Files
kiri-core/http-server/SInterface/OnCloseInterface.php
T
as2252258@163.com 3d9bea7fb6 111
2021-09-24 02:23:24 +08:00

23 lines
216 B
PHP

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