| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | class ReportingCloudFactory implements FactoryInterface |
||
| 30 | { |
||
| 31 | /** |
||
| 32 | * @param ContainerInterface $container |
||
| 33 | * @param string $requestedName |
||
| 34 | * @param array|null $options |
||
| 35 | * |
||
| 36 | * @return ReportingCloud |
||
| 37 | * @throws ContainerExceptionInterface |
||
| 38 | * @throws NotFoundExceptionInterface |
||
| 39 | */ |
||
| 40 | public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null): ReportingCloud |
||
| 48 |