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