Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
5 | class GroupConsumerCommand extends BaseConsumerCommand |
||
6 | { |
||
7 | protected function configure() |
||
8 | { |
||
9 | parent::configure(); |
||
10 | |||
11 | $this |
||
12 | ->setName('rabbitmq:group:consumer') |
||
13 | ->setDescription('Synchronous execute grouped consumers') |
||
14 | ; |
||
15 | } |
||
16 | |||
17 | protected function getConsumerService() |
||
20 | } |
||
21 | } |