OldSoundRabbitMqBundle   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 4
Bugs 0 Features 0
Metric Value
eloc 11
c 4
b 0
f 0
dl 0
loc 23
ccs 0
cts 16
cp 0
rs 10
wmc 5

2 Methods

Rating   Name   Duplication   Size   Complexity  
A shutdown() 0 10 4
A build() 0 6 1
1
<?php
2
3
namespace OldSound\RabbitMqBundle;
4
5
use OldSound\RabbitMqBundle\DependencyInjection\Compiler\InjectEventDispatcherPass;
6
use OldSound\RabbitMqBundle\DependencyInjection\Compiler\RegisterPartsPass;
7
use Symfony\Component\HttpKernel\Bundle\Bundle;
8
use Symfony\Component\DependencyInjection\ContainerBuilder;
9
10
class OldSoundRabbitMqBundle extends Bundle
11
{
12
    public function build(ContainerBuilder $container)
13
    {
14
        parent::build($container);
15
16
        $container->addCompilerPass(new RegisterPartsPass());
17
        $container->addCompilerPass(new InjectEventDispatcherPass());
18
    }
19
20
    /**
21
     * {@inheritDoc}
22
     */
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
            }
34
        }
35
    }
36
}
37