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
+4 -2
View File
@@ -2,8 +2,8 @@
namespace Kiri\Server\Contract;
use Swoole\Server;
use Swoole\WebSocket\Server;
/**
*
@@ -13,9 +13,11 @@ interface OnCloseInterface
/**
* @param Server $server
* @param int $fd
* @return void
*/
public function onClose(int $fd): void;
public function onClose(Server $server, int $fd): void;
}