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