Files
kiri-core/http-server/SInterface/OnCloseInterface.php
T

23 lines
216 B
PHP
Raw Normal View History

2021-08-12 12:40:06 +08:00
<?php
namespace Server\SInterface;
use Swoole\Server;
/**
*
*/
2021-09-24 02:23:24 +08:00
interface OnCloseInterface
2021-08-12 12:40:06 +08:00
{
/**
* @param Server $server
* @param int $fd
*/
public function onClose(Server $server, int $fd): void;
}