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

22 lines
172 B
PHP
Raw Normal View History

2021-11-03 15:17:52 +08:00
<?php
2021-11-18 11:37:12 +08:00
namespace Server\Contract;
2021-11-03 15:17:52 +08:00
use Swoole\Server;
/**
*
*/
interface OnCloseInterface
{
/**
* @param int $fd
*/
2022-01-08 18:49:06 +08:00
public function onClose(int $fd): void;
2021-11-03 15:17:52 +08:00
}