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

16 lines
173 B
PHP
Raw Normal View History

2022-01-09 03:49:02 +08:00
<?php
2022-01-10 11:39:55 +08:00
namespace Kiri\Server\Contract;
2022-01-09 03:49:02 +08:00
interface OnDisconnectInterface
{
2022-02-22 11:47:16 +08:00
/**
* @param int $fd
*/
2022-10-11 18:41:58 +08:00
public function OnDisconnect(int $fd): void;
2022-01-09 03:49:02 +08:00
}