Test Failed
Push — feature-laravel-5.4 ( 9e5723...3c155c )
by Kirill
04:28
created
app/Console/Commands/StartWebSocketServer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace App\Console\Commands;
11 11
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     {
46 46
         $this->info('Starting a WebSocket server');
47 47
 
48
-        $server = Server::new($app, (int)env('WEBSOCKET_PORT', 8080), env('WEBSOCKET_HOST', '127.0.0.1'));
48
+        $server = Server::new($app, (int) env('WEBSOCKET_PORT', 8080), env('WEBSOCKET_HOST', '127.0.0.1'));
49 49
         $server->run();
50 50
     }
51 51
 }
Please login to merge, or discard this patch.