modify plugin name

This commit is contained in:
2022-02-22 11:47:16 +08:00
parent d44923d477
commit 0f693e3b37
4 changed files with 18 additions and 11 deletions
+7 -6
View File
@@ -2,17 +2,18 @@
namespace Kiri\Server\Contract;
use Swoole\Server;
use Swoole\WebSocket\Server;
interface OnDisconnectInterface
{
/**
* @param int $fd
*/
public function onDisconnect(int $fd): void;
/**
* @param Server $server
* @param int $fd
*/
public function onDisconnect(Server $server, int $fd): void;
}