| Conditions | 4 |
| Paths | 4 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | public function shutdown() |
||
| 24 | { |
||
| 25 | parent::shutdown(); |
||
| 26 | if (!$this->container->hasParameter('old_sound_rabbit_mq.base_amqp')) { |
||
| 27 | return; |
||
| 28 | } |
||
| 29 | $connections = $this->container->getParameter('old_sound_rabbit_mq.base_amqp'); |
||
| 30 | foreach ($connections as $connection) { |
||
| 31 | if ($this->container->initialized($connection)) { |
||
| 32 | $this->container->get($connection)->close(); |
||
| 33 | } |
||
| 37 |