Completed
Push — master ( c1f6ff...83dec0 )
by Marcel
01:31
created
src/HttpApi/Controllers/Controller.php 1 patch
Unused Use Statements   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -2,20 +2,20 @@
 block discarded – undo
2 2
 
3 3
 namespace BeyondCode\LaravelWebSockets\HttpApi\Controllers;
4 4
 
5
+use BeyondCode\LaravelWebSockets\Apps\App;
6
+use BeyondCode\LaravelWebSockets\QueryParameters;
7
+use BeyondCode\LaravelWebSockets\WebSockets\Channels\ChannelManager;
5 8
 use Exception;
6
-use Pusher\Pusher;
7
-use Illuminate\Http\Request;
8 9
 use GuzzleHttp\Psr7\Response;
9
-use Ratchet\ConnectionInterface;
10
-use Illuminate\Http\JsonResponse;
11 10
 use GuzzleHttp\Psr7\ServerRequest;
12
-use Ratchet\Http\HttpServerInterface;
11
+use Illuminate\Http\JsonResponse;
12
+use Illuminate\Http\Request;
13 13
 use Psr\Http\Message\RequestInterface;
14
-use BeyondCode\LaravelWebSockets\Apps\App;
15
-use BeyondCode\LaravelWebSockets\QueryParameters;
16
-use Symfony\Component\HttpKernel\Exception\HttpException;
14
+use Pusher\Pusher;
15
+use Ratchet\ConnectionInterface;
16
+use Ratchet\Http\HttpServerInterface;
17 17
 use Symfony\Bridge\PsrHttpMessage\Factory\HttpFoundationFactory;
18
-use BeyondCode\LaravelWebSockets\WebSockets\Channels\ChannelManager;
18
+use Symfony\Component\HttpKernel\Exception\HttpException;
19 19
 
20 20
 abstract class Controller implements HttpServerInterface
21 21
 {
Please login to merge, or discard this patch.