DtcQueueBundle::build()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 2
Bugs 1 Features 0
Metric Value
cc 1
eloc 6
c 2
b 1
f 0
nc 1
nop 1
dl 0
loc 8
ccs 0
cts 7
cp 0
crap 2
rs 10
1
<?php
2
3
namespace Dtc\QueueBundle;
4
5
use Dtc\QueueBundle\DependencyInjection\Compiler\BeanstalkdCompilerPass;
6
use Dtc\QueueBundle\DependencyInjection\Compiler\GridCompilerPass;
7
use Dtc\QueueBundle\DependencyInjection\Compiler\RabbitMQCompilerPass;
8
use Dtc\QueueBundle\DependencyInjection\Compiler\RedisCompilerPass;
9
use Dtc\QueueBundle\DependencyInjection\Compiler\WorkerCompilerPass;
10
use Symfony\Component\DependencyInjection\ContainerBuilder;
0 ignored issues
show
Bug introduced by
The type Symfony\Component\Depend...ection\ContainerBuilder 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...
11
use Symfony\Component\HttpKernel\Bundle\Bundle;
0 ignored issues
show
Bug introduced by
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...
12
13
class DtcQueueBundle extends Bundle
14
{
15
    public function build(ContainerBuilder $container): void
16
    {
17
        parent::build($container);
18
        $container->addCompilerPass(new WorkerCompilerPass());
19
        $container->addCompilerPass(new RabbitMQCompilerPass());
20
        $container->addCompilerPass(new BeanstalkdCompilerPass());
21
        $container->addCompilerPass(new RedisCompilerPass());
22
        $container->addCompilerPass(new GridCompilerPass());
23
    }
24
}
25