| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 3.0123 |
| 1 | <?php |
||
| 23 | 11 | public function process(ContainerBuilder $container) |
|
| 24 | { |
||
| 25 | 11 | if (!$container->hasDefinition('fos_elastica.config_manager')) { |
|
| 26 | return; |
||
| 27 | } |
||
| 28 | |||
| 29 | 11 | $sources = array(); |
|
| 30 | 11 | foreach (array_keys($container->findTaggedServiceIds('fos_elastica.config_source')) as $id) { |
|
| 31 | 11 | $sources[] = new Reference($id); |
|
| 32 | 11 | } |
|
| 33 | |||
| 34 | 11 | $container->getDefinition('fos_elastica.config_manager')->replaceArgument(0, $sources); |
|
| 35 | 11 | } |
|
| 36 | } |
||
| 37 |