Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
17 | class AuthOptionsFactory implements FactoryInterface |
||
18 | { |
||
19 | /** |
||
20 | * @param ContainerInterface $container |
||
21 | * @param string $requestedName |
||
22 | * @param array|null $options |
||
23 | * |
||
24 | * @return AuthOptions |
||
25 | * @throws InvalidParameterException |
||
26 | * @throws ContainerExceptionInterface |
||
27 | * @throws NotFoundExceptionInterface |
||
28 | */ |
||
29 | 2 | public function __invoke( |
|
40 |