| Conditions | 2 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function handle(): int |
||
| 27 | { |
||
| 28 | $this->line('<info>Starting the HydeRC server...</info> Press Ctrl+C to stop'); |
||
| 29 | |||
| 30 | $this->runServerProcess(sprintf('php -S %s:%d %s', |
||
| 31 | $this->option('host'), |
||
| 32 | $this->getPortSelection() ?: 8080, |
||
| 33 | $this->getExecutablePath() |
||
| 34 | )); |
||
| 35 | |||
| 36 | return Command::SUCCESS; |
||
| 37 | } |
||
| 56 |