Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | public function __invoke(ContainerInterface $container, string $requestedName, array $options = null): \stdClass |
||
32 | { |
||
33 | $dependency = $this->getService($container, $this->dependency, $requestedName); |
||
34 | |||
35 | $service = new \stdClass(); |
||
36 | $service->dependency = $dependency; |
||
37 | |||
38 | return $service; |
||
39 | } |
||
41 |