Completed
Pull Request — master (#374)
by Leny
06:16
created

VictoireI18nBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 3
dl 0
loc 13
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A build() 0 5 1
1
<?php
2
3
namespace Victoire\Bundle\I18nBundle;
4
5
use Symfony\Component\DependencyInjection\ContainerBuilder;
6
use Symfony\Component\HttpKernel\Bundle\Bundle;
7
use Victoire\Bundle\I18nBundle\DependencyInjection\Compiler\I18nCompilerPass;
8
9
class VictoireI18nBundle extends Bundle
10
{
11
    /**
12
     * Build bundle.
13
     *
14
     * @param ContainerBuilder $container
15
     */
16
    public function build(ContainerBuilder $container)
17
    {
18
        parent::build($container);
19
        $container->addCompilerPass(new I18nCompilerPass());
20
    }
21
}
22