Files
kiri-http-server/Contract/OnCloseInterface.php
T
2022-10-11 18:41:58 +08:00

20 lines
192 B
PHP

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