| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | public function process(ContainerBuilder $container): void |
||
| 31 | { |
||
| 32 | $definition = $container->findDefinition('surfnet_gateway_api.service.provider'); |
||
| 33 | $taggedServices = $container->findTaggedServiceIds('sms_provider'); |
||
| 34 | foreach ($taggedServices as $id => $tags) { |
||
| 35 | $definition->addMethodCall('addSmsAdapter', [new Reference($id)]); |
||
| 36 | } |
||
| 39 |