diff --git a/src/Server/Router.php b/src/Server/Router.php index 6b4dbdb..334e023 100644 --- a/src/Server/Router.php +++ b/src/Server/Router.php @@ -11,7 +11,6 @@ use BeyondCode\LaravelWebSockets\WebSockets\Controllers\WebSocketHandler; use Ratchet\WebSocket\MessageComponentInterface; use Ratchet\WebSocket\WsServer; use Symfony\Component\Routing\Route; -use Ratchet\Http\HttpServerInterface; use Symfony\Component\Routing\RouteCollection; use BeyondCode\LaravelWebSockets\Exceptions\InvalidWebSocketController; @@ -40,8 +39,6 @@ class Router $this->post('/apps/{appId}/events', TriggerEventController::class); } - - public function get(string $uri, $action) { $this->addRoute('GET', $uri, $action);