This commit is contained in:
2022-10-11 18:55:06 +08:00
parent 268f8665d0
commit 5bfe8401f5
6 changed files with 57 additions and 61 deletions
@@ -0,0 +1,15 @@
<?php
namespace Kiri\Websocket\Contract;
interface OnDisconnectInterface
{
/**
* @param int $fd
*/
public function OnDisconnect(int $fd): void;
}