Files
kiri-core/kiri-server/Contract/OnCloseInterface.php
T
2021-11-30 14:32:56 +08:00

23 lines
219 B
PHP

<?php
namespace Kiri\Server\Contract;
use Swoole\Server;
/**
*
*/
interface OnCloseInterface
{
/**
* @param Server $server
* @param int $fd
*/
public function onClose(Server $server, int $fd): void;
}