Completed
Push — master ( 53691c...15e6b6 )
by Marcel
01:44
created
src/HttpApi/Controllers/Controller.php 1 patch
Unused Use Statements   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -2,21 +2,21 @@
 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;
11
+use Illuminate\Http\JsonResponse;
12
+use Illuminate\Http\Request;
12 13
 use Illuminate\Support\Collection;
13
-use Ratchet\Http\HttpServerInterface;
14 14
 use Psr\Http\Message\RequestInterface;
15
-use BeyondCode\LaravelWebSockets\Apps\App;
16
-use BeyondCode\LaravelWebSockets\QueryParameters;
17
-use Symfony\Component\HttpKernel\Exception\HttpException;
15
+use Pusher\Pusher;
16
+use Ratchet\ConnectionInterface;
17
+use Ratchet\Http\HttpServerInterface;
18 18
 use Symfony\Bridge\PsrHttpMessage\Factory\HttpFoundationFactory;
19
-use BeyondCode\LaravelWebSockets\WebSockets\Channels\ChannelManager;
19
+use Symfony\Component\HttpKernel\Exception\HttpException;
20 20
 
21 21
 abstract class Controller implements HttpServerInterface
22 22
 {
Please login to merge, or discard this patch.