@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace BeyondCode\LaravelWebSockets\Server; |
4 | 4 | |
5 | -use BeyondCode\LaravelWebSockets\Server\Loggers\WebSocketsLogger; |
|
6 | 5 | use Ratchet\WebSocket\MessageComponentInterface; |
7 | 6 | use Ratchet\WebSocket\WsServer; |
8 | 7 | use Symfony\Component\Routing\Route; |
@@ -101,7 +101,7 @@ |
||
101 | 101 | * Handle the websocket errors. |
102 | 102 | * |
103 | 103 | * @param \Ratchet\ConnectionInterface $connection |
104 | - * @param WebSocketException $exception |
|
104 | + * @param Exception $exception |
|
105 | 105 | * @return void |
106 | 106 | */ |
107 | 107 | public function onError(ConnectionInterface $connection, Exception $exception) |
@@ -197,7 +197,7 @@ |
||
197 | 197 | /** |
198 | 198 | * Get a new RedisLock instance to avoid race conditions. |
199 | 199 | * |
200 | - * @return \Illuminate\Cache\CacheLock |
|
200 | + * @return RedisLock |
|
201 | 201 | */ |
202 | 202 | protected function lock() |
203 | 203 | { |