Completed
Push — master ( 88e0c6...d8f1d5 )
by Marcel
01:35
created
src/Console/StartDashboardCommand.php 1 patch
Unused Use Statements   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -2,19 +2,19 @@
 block discarded – undo
2 2
 
3 3
 namespace BeyondCode\DuskDashboard\Console;
4 4
 
5
+use BeyondCode\DuskDashboard\Ratchet\Http\DashboardController;
6
+use BeyondCode\DuskDashboard\Ratchet\Http\EventController;
7
+use BeyondCode\DuskDashboard\Ratchet\Server\App;
8
+use BeyondCode\DuskDashboard\Ratchet\Socket;
9
+use BeyondCode\DuskDashboard\Watcher;
5 10
 use Clue\React\Buzz\Browser;
6 11
 use Illuminate\Console\Command;
7 12
 use Ratchet\WebSocket\WsServer;
13
+use React\EventLoop\Factory as LoopFactory;
8 14
 use React\EventLoop\LoopInterface;
9 15
 use Symfony\Component\Finder\Finder;
10
-use Symfony\Component\Routing\Route;
11
-use BeyondCode\DuskDashboard\Watcher;
12 16
 use Symfony\Component\Process\Process;
13
-use React\EventLoop\Factory as LoopFactory;
14
-use BeyondCode\DuskDashboard\Ratchet\Socket;
15
-use BeyondCode\DuskDashboard\Ratchet\Server\App;
16
-use BeyondCode\DuskDashboard\Ratchet\Http\EventController;
17
-use BeyondCode\DuskDashboard\Ratchet\Http\DashboardController;
17
+use Symfony\Component\Routing\Route;
18 18
 
19 19
 class StartDashboardCommand extends Command
20 20
 {
Please login to merge, or discard this patch.
src/Ratchet/Http/EventController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
 use GuzzleHttp\Psr7\Response;
7 7
 use Ratchet\ConnectionInterface;
8 8
 use function GuzzleHttp\Psr7\str;
9
-use Psr\Http\Message\RequestInterface;
10 9
 use BeyondCode\DuskDashboard\Ratchet\Socket;
10
+use Psr\Http\Message\RequestInterface;
11 11
 
12 12
 class EventController extends Controller
13 13
 {
Please login to merge, or discard this patch.
src/Ratchet/Socket.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace BeyondCode\DuskDashboard\Ratchet;
4 4
 
5 5
 use Ratchet\ConnectionInterface;
6
-use Symfony\Component\Process\Process;
7 6
 use Ratchet\WebSocket\MessageComponentInterface;
7
+use Symfony\Component\Process\Process;
8 8
 
9 9
 class Socket implements MessageComponentInterface
10 10
 {
Please login to merge, or discard this patch.