@@ -5,7 +5,7 @@ discard block |
||
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 |
||
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 | } |