| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function __invoke() : void |
||
| 30 | { |
||
| 31 | $container = $this->container->getContainer(); |
||
| 32 | foreach ($container as $dependencyIndex => $dependency) { |
||
| 33 | $isNotInjector = $dependencyIndex !== 'Ray\Di\InjectorInterface-' . Name::ANY; |
||
|
|
|||
| 34 | if ($isNotInjector) { |
||
| 35 | $this->write($dependencyIndex); |
||
| 36 | } |
||
| 37 | } |
||
| 38 | } |
||
| 39 | |||
| 59 |