VictoireCriteriaBundle::build()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 3
nc 1
nop 1
1
<?php
2
3
namespace Victoire\Bundle\CriteriaBundle;
4
5
use Symfony\Component\DependencyInjection\ContainerBuilder;
6
use Symfony\Component\HttpKernel\Bundle\Bundle;
7
use Victoire\Bundle\CriteriaBundle\DependencyInjection\Compiler\DataSourceCompilerPass;
8
9
class VictoireCriteriaBundle extends Bundle
0 ignored issues
show
introduced by
Missing class doc comment
Loading history...
10
{
11
    /**
12
     * Build bundle.
13
     *
14
     * @param ContainerBuilder $container
15
     */
16
    public function build(ContainerBuilder $container)
17
    {
18
        parent::build($container);
19
20
        $container->addCompilerPass(new DataSourceCompilerPass());
21
    }
22
}
23