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