Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function __invoke(ContainerInterface $container, string $requestedName, array $options = null): \stdClass |
||
25 | { |
||
26 | $dependency = $this->getService($container, $this->dependency, $requestedName); |
||
27 | |||
28 | $service = new \stdClass(); |
||
29 | $service->dependency = $dependency; |
||
30 | |||
31 | return $service; |
||
32 | } |
||
34 |