Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 4 | ||
Bugs | 2 | Features | 1 |
1 | <?php |
||
20 | 1 | public function build(ContainerBuilder $container) |
|
21 | { |
||
22 | 1 | parent::build($container); |
|
23 | |||
24 | 1 | $container->addCompilerPass(new DependencyInjection\Compiler\UrlProviderPass()); |
|
25 | 1 | $container->addCompilerPass(new DependencyInjection\Compiler\ReplaceUrlProviderServicePass()); |
|
|
|||
26 | 1 | $container->addCompilerPass(new DependencyInjection\Compiler\CachePass()); |
|
27 | 1 | $container->addCompilerPass(new DependencyInjection\Compiler\UrlMapperPass()); |
|
28 | 1 | } |
|
30 |