| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class WorkerCommand extends AbstractCommand |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @throws \Symfony\Component\Console\Exception\InvalidArgumentException |
||
| 18 | */ |
||
| 19 | protected function configure(): void |
||
| 20 | { |
||
| 21 | $this->setName('queue:worker:run'); |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
| 26 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
| 27 | * |
||
| 28 | * @return int|void |
||
| 29 | */ |
||
| 30 | public function run(InputInterface $input, OutputInterface $output) |
||
| 33 | } |
||
| 34 | } |