blob: 4723b298b61912f865a4928ed9cf5715c2917565 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php
namespace Infrastructure\Console\Commands;
use Illuminate\Console\Command;
use Infrastructure\Http\WebSocketController;
use Ratchet\Http\HttpServer;
use Ratchet\Server\IoServer;
use Ratchet\WebSocket\WsServer;
class WebSocketServerCommand extends Command
{
/**
* The console command name.
*
* @var string
*/
protected $name = 'websocket';
/**
* Execute the console command.
*
* @return void
*/
public function fire()
{
$server = IoServer::factory(
new HttpServer(
new WsServer(
new WebSocketController()
)
),
1337
);
$this->line('Started server.');
$server->run();
}
}
|