| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 52 | public function resolve(DependencyResolverInterface $container) |
||
| 53 | { |
||
| 54 | $service = $this->definition->resolve($container); |
||
| 55 | $containerInterface = $container->get(ContainerInterface::class); |
||
| 56 | foreach ($this->extensions as $extension) { |
||
| 57 | $service = $extension($containerInterface, $service); |
||
| 58 | } |
||
| 59 | |||
| 60 | return $service; |
||
| 61 | } |
||
| 63 |