Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class GetServiceStdClassFactory extends AbstractFactory |
||
12 | { |
||
13 | /** |
||
14 | * @param array<mixed>|null $factoryOptions |
||
15 | */ |
||
16 | public function __construct(private readonly mixed $dependency, array $factoryOptions = null) |
||
17 | { |
||
18 | parent::__construct($factoryOptions); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @throws ContainerExceptionInterface |
||
23 | */ |
||
24 | public function __invoke(ContainerInterface $container, string $requestedName, array $options = null): \stdClass |
||
32 | } |
||
33 | } |
||
34 |