Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
44 | private function collectServices(string $method, string $tag, Definition $definition, ContainerBuilder $container): void |
||
45 | { |
||
46 | $taggedJWSServices = $container->findTaggedServiceIds($tag); |
||
47 | foreach ($taggedJWSServices as $id => $tags) { |
||
48 | $definition->addMethodCall($method, [$id, new Reference($id)]); |
||
49 | } |
||
50 | } |
||
51 | } |
||
52 |