| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2.0116 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | 1 | protected function addMethodCallToCrawler(ContainerBuilder $container, $tag, $methodName) |
|
| 17 | { |
||
| 18 | 1 | $definition = $container->findDefinition('mediamonks_crawler.crawler'); |
|
| 19 | |||
| 20 | 1 | $taggedServices = $container->findTaggedServiceIds($tag); |
|
| 21 | 1 | foreach ($taggedServices as $id => $tags) { |
|
| 22 | $definition->addMethodCall($methodName, [new Reference($id)]); |
||
| 23 | 1 | } |
|
| 24 | 1 | } |
|
| 25 | } |
||
| 26 |