| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 9 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 6 | 
| CRAP Score | 2 | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 27 | 2 | public function resolve(DependencyResolverInterface $container)  | 
            |
| 28 |     { | 
            ||
| 29 | 2 | $service = (Normalizer::normalize($this->definition))->resolve($container);  | 
            |
| 30 | 2 | $containerInterface = $container->get(ContainerInterface::class);  | 
            |
| 31 | 2 |         foreach ($this->extensions as $extension) { | 
            |
| 32 | 2 | $service = $extension($containerInterface, $service);  | 
            |
| 33 | }  | 
            ||
| 34 | |||
| 35 | 2 | return $service;  | 
            |
| 36 | }  | 
            ||
| 38 |