| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 1 | public function build(ContainerBuilder $container) |
|
| 17 | { |
||
| 18 | 1 | $container->addCompilerPass(new SeoSourcePass(), PassConfig::TYPE_OPTIMIZE); |
|
| 19 | 1 | $container->addCompilerPass(new LinkGeneratorPass()); |
|
| 20 | 1 | $container->addCompilerPass(new SlugNormalizerPass()); |
|
| 21 | 1 | $container->addCompilerPass(new RouterPass()); |
|
| 22 | 1 | } |
|
| 23 | |||
| 29 |