Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
30 | protected function configure() |
||
31 | { |
||
32 | $this->setName('queue:declare'); |
||
33 | $this->setDescription('Tries to declare all known exchanges and queues'); |
||
34 | $this->setHelp(<<<HELP |
||
35 | This utility command is useful for deployments to ensure all the configured |
||
36 | exchanges and queues are created on the message broker. |
||
37 | HELP |
||
38 | ); |
||
39 | } |
||
40 | |||
51 |