Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function process(ContainerBuilder $container) |
||
40 | { |
||
41 | $taggedServices = $container->findTaggedServiceIds('fob.context_service'); |
||
42 | |||
43 | foreach ($taggedServices as $id => $tags) { |
||
44 | $this->contextRegistryDefinition->addMethodCall( |
||
45 | 'add', |
||
46 | [$id, $container->findDefinition($id)->getClass()] |
||
47 | ); |
||
48 | } |
||
49 | } |
||
50 | } |
||
51 |