| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | 2 | public function process(ContainerBuilder $container) |
|
| 13 | { |
||
| 14 | 2 | $definition = $container->findDefinition(AssetPackager::class); |
|
| 15 | |||
| 16 | 2 | foreach ($container->findTaggedServiceIds('obblm.asset_packager') as $id => $tags) { |
|
| 17 | 2 | $definition->addMethodCall('addBuildAsset', [new Reference($id)]); |
|
| 18 | } |
||
| 21 |