Files
kiri-http-server/Contract/OnCloseInterface.php
T
as2252258 8c9de79027 Revert "改名"
This reverts commit fdf58326
2022-01-08 18:49:06 +08:00

22 lines
172 B
PHP

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