Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class ReactSocketServer extends Command |
||
12 | { |
||
13 | public const NAME = 'serve:socket:wamp'; |
||
14 | |||
15 | private $config; |
||
16 | |||
17 | public function __construct(array $config) |
||
18 | { |
||
19 | parent::__construct(); |
||
20 | $this->config = $config; |
||
21 | } |
||
22 | |||
23 | protected function configure(): void |
||
24 | { |
||
25 | $this->setName(self::NAME); |
||
26 | } |
||
27 | |||
28 | protected function execute(InputInterface $input, OutputInterface $output) |
||
32 | } |
||
33 | } |
||
34 |