OldSoundRabbitMqBundle::build()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 3
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 6
ccs 0
cts 5
cp 0
crap 2
rs 10
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