Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | protected function declareQueue(): void |
||
28 | { |
||
29 | $this->mergeExchangeOptions(); |
||
30 | $args = array_values($this->exchangeOptions()); |
||
31 | array_unshift($args, Producer::TYPE_TOPIC); |
||
32 | array_unshift($args, $this->exchange); |
||
33 | call_user_func_array([$this->channel(), 'exchange_declare'], $args); |
||
34 | parent::declareQueue(); |
||
35 | } |
||
37 |