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

23 lines
216 B
PHP
Raw Normal View History

2021-11-03 15:17:52 +08:00
<?php
namespace Server\SInterface;
use Swoole\Server;
/**
*
*/
interface OnCloseInterface
{
/**
* @param Server $server
* @param int $fd
*/
public function onClose(Server $server, int $fd): void;
}