1 | <?php |
||
26 | class StartWebSocketServer extends Command |
||
27 | { |
||
28 | /** |
||
29 | * The name and signature of the console command. |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $signature = 'ws:start'; |
||
33 | |||
34 | /** |
||
35 | * The console command description. |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $description = 'Start a web socket server'; |
||
39 | |||
40 | /** |
||
41 | * @param Container $app |
||
42 | * @throws \RuntimeException |
||
43 | */ |
||
44 | public function handle(Container $app) |
||
51 | } |
||
52 |