| Conditions | 2 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public function __construct(ConsumerService $consumerService, $commandName = 'amqp:consume', $description = null) |
||
| 22 | { |
||
| 23 | parent::__construct($commandName); |
||
| 24 | $this->setDescription($description ?: 'Listen to messages from the AMQP bus (RabbitMQ)'); |
||
| 25 | $this->consumerService = $consumerService; |
||
| 26 | } |
||
| 27 | |||
| 45 |