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

22 lines
193 B
PHP
Raw Normal View History

2022-01-09 03:49:02 +08:00
<?php
namespace Server\Contract;
use Swoole\Server;
/**
*
*/
interface OnCloseInterface
{
/**
* @param int $fd
*/
public function onClose(int $fd): void;
}