Completed
Push — master ( 5c96bd...157b73 )
by Mihai
03:42
created

OldSoundRabbitMqBundle.php (1 issue)

Labels
Severity
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;
0 ignored issues
show
The type Symfony\Component\HttpKernel\Bundle\Bundle was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
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