modify plugin name

This commit is contained in:
2022-06-16 17:38:23 +08:00
parent 10de6b5246
commit 4daad7d111
22 changed files with 1206 additions and 70 deletions
@@ -0,0 +1,22 @@
<?php
namespace Kiri\Websocket\Contract;
use Swoole\WebSocket\Frame;
use Swoole\WebSocket\Server;
use Swoole\Coroutine\Http\Server as CoroutineServer;
interface OnCloseInterface
{
/**
* @param Server|CoroutineServer $server
* @param int $fd
* @return void
*/
public function onClose(Server|CoroutineServer $server, int $fd): void;
}