Files
kiri-http-server/Contract/OnCloseInterface.php
T
as2252258 b2728947a3 Revert "改名"
This reverts commit fdf58326
2022-01-10 11:39:55 +08:00

22 lines
198 B
PHP

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