| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 54.55% |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 8 | class MultipleConsumerCommand extends BaseConsumerCommand |
||
| 9 | { |
||
| 10 | 1 | protected function configure(): void |
|
| 11 | { |
||
| 12 | 1 | parent::configure(); |
|
| 13 | |||
| 14 | 1 | $this->setDescription('Executes a consumer that uses multiple queues') |
|
| 15 | 1 | ->setName('rabbitmq:multiple-consumer') |
|
| 16 | 1 | ->addArgument('context', InputArgument::OPTIONAL, 'Context the consumer runs in') |
|
| 17 | ; |
||
| 18 | 1 | } |
|
| 19 | |||
| 20 | protected function getConsumerService() |
||
| 23 | } |
||
| 24 | |||
| 25 | protected function initConsumer(InputInterface $input) |
||
| 31 |