Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
18 | 1 | protected function configure() |
|
19 | { |
||
20 | 1 | $this |
|
21 | 1 | ->addArgument('event', InputArgument::REQUIRED) |
|
22 | 1 | ->addOption('callback', null, InputOption::VALUE_REQUIRED, 'Callback service name') |
|
23 | 1 | ->setName('rabbitmq-manager:consumer') |
|
24 | 1 | ->setDescription(' |
|
25 | This console command can only be used in combination with the rabbitmq-cli-consumer. |
||
26 | https://github.com/ricbra/rabbitmq-cli-consumer |
||
27 | 1 | '); |
|
28 | 1 | } |
|
29 | |||
48 |