Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
12 | class ReactHttpServer extends Command |
||
13 | { |
||
14 | public const NAME = 'react-server:http'; |
||
15 | private array $config; |
||
16 | |||
17 | public function __construct(array $config) |
||
18 | { |
||
19 | parent::__construct(); |
||
20 | $this->config = $config; |
||
21 | } |
||
22 | |||
23 | protected function configure(): void |
||
26 | } |
||
27 | |||
28 | protected function execute(InputInterface $input, OutputInterface $output) |
||
41 |