| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | final class ApplicationFactory implements FactoryInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @param ContainerInterface $container |
||
| 20 | * @return Application |
||
| 21 | * @psalm-suppress MixedArgument |
||
| 22 | * @psalm-suppress MixedArrayAccess |
||
| 23 | */ |
||
| 24 | 6 | public function create(ContainerInterface $container): Application |
|
| 35 |