Files
kiri-core/kiri-websocket-server/Contract/OnCloseInterface.php
T

18 lines
166 B
PHP
Raw Normal View History

2022-06-16 17:38:23 +08:00
<?php
namespace Kiri\Websocket\Contract;
interface OnCloseInterface
{
/**
* @param int $fd
* @return void
*/
2022-10-11 18:55:06 +08:00
public function OnClose(int $fd): void;
2022-06-16 17:38:23 +08:00
}