modify plugin name

This commit is contained in:
2022-06-16 18:07:27 +08:00
parent 6371d5271e
commit 348f0129e8
+1 -6
View File
@@ -22,9 +22,6 @@ use Kiri\Server\Contract\OnConnectInterface;
use Kiri\Server\Contract\OnReceiveInterface; use Kiri\Server\Contract\OnReceiveInterface;
use Kiri\Server\Events\OnBeforeShutdown; use Kiri\Server\Events\OnBeforeShutdown;
use Kiri\Server\Events\OnServerBeforeStart; use Kiri\Server\Events\OnServerBeforeStart;
use Kiri\Server\Events\OnTaskerStart;
use Kiri\Server\Events\OnWorkerExit;
use Kiri\Server\Events\OnWorkerStart;
use Psr\Container\ContainerExceptionInterface; use Psr\Container\ContainerExceptionInterface;
use Kiri\Di\ContainerInterface; use Kiri\Di\ContainerInterface;
use Psr\Container\NotFoundExceptionInterface; use Psr\Container\NotFoundExceptionInterface;
@@ -33,7 +30,6 @@ use ReflectionException;
use Swoole\Coroutine; use Swoole\Coroutine;
use Swoole\Coroutine\Channel; use Swoole\Coroutine\Channel;
use Swoole\Server; use Swoole\Server;
use Swoole\Timer;
/** /**
* *
@@ -285,11 +281,10 @@ class RpcJsonp extends Component implements OnConnectInterface, OnReceiveInterfa
/** /**
* @param \Swoole\WebSocket\Server $server
* @param int $fd * @param int $fd
* @return void * @return void
*/ */
public function onClose(\Swoole\WebSocket\Server $server, int $fd): void public function onClose(int $fd): void
{ {
// TODO: Implement onClose() method. // TODO: Implement onClose() method.
} }