| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | 1 | public function process(ContainerBuilder $container) |
|
| 14 | { |
||
| 15 | 1 | $bundleConfig = $container->getParameter('palmtree_canonical_url.config'); |
|
| 16 | |||
| 17 | 1 | $definition = $container->getDefinition('palmtree_canonical_url.url_generator'); |
|
| 18 | 1 | $definition->addArgument($bundleConfig); |
|
| 19 | |||
| 20 | 1 | $definition = $container->getDefinition('palmtree_canonical_url.request_listener'); |
|
| 21 | 1 | $definition->addArgument($bundleConfig); |
|
| 22 | |||
| 23 | 1 | $definition = $container->getDefinition('palmtree_canonical_url.exception_listener'); |
|
| 24 | 1 | $definition->addArgument($bundleConfig); |
|
| 25 | 1 | } |
|
| 27 |