Completed
Push — master ( 8aed6d...e71704 )
by Brad
02:25
created
src/Protocol/WebSocket/WebSocket.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
             strtolower($request->headers->get('Upgrade')) != 'websocket' ||
38 38
             !$this->checkProtocolVrsion($request) ||
39 39
             !$this->checkSecKey($key)
40
-          ){
40
+            ){
41 41
             return false;
42 42
         }
43 43
         $acceptKey = $this->generateAcceptKey($key);
Please login to merge, or discard this patch.
src/Protocol/LivereloadProtocol.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
     protected function processCommandHello($command)
75 75
     {
76 76
         if($this->connected){
77
-           return;
77
+            return;
78 78
         }
79 79
         $this->app->getOutput()->writeln(strftime('%T')." - info - Livereload protocol initialized.", OutputInterface::VERBOSITY_VERBOSE);
80 80
         $this->connected = true;
Please login to merge, or discard this patch.