1 | <?php |
||
12 | class ServerRun extends Command |
||
13 | { |
||
14 | protected function configure(): void |
||
22 | |||
23 | /** |
||
24 | * Get the port for the command. |
||
25 | * |
||
26 | * @return string |
||
27 | */ |
||
28 | protected function port() |
||
32 | |||
33 | /** |
||
34 | * Get the host for the command. |
||
35 | * |
||
36 | * @return string |
||
37 | */ |
||
38 | protected function host() |
||
42 | |||
43 | /** |
||
44 | * Get the full server command. |
||
45 | * |
||
46 | * @return string |
||
47 | */ |
||
48 | protected function serverCommand() : string |
||
57 | |||
58 | public function handle(): void |
||
64 | |||
65 | } |
||
66 |