Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
11 | class SecurityFactory extends AbstractFactory |
||
12 | { |
||
13 | /** |
||
14 | * @return \Xervice\Security\Business\Provider\SecurityProvider |
||
15 | */ |
||
16 | public function createSecurityProvider(): SecurityProviderInterface |
||
17 | { |
||
18 | return new SecurityProvider( |
||
19 | $this->getAuthenticatorList() |
||
20 | ); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return array |
||
25 | */ |
||
26 | public function getAuthenticatorList(): array |
||
29 | } |
||
30 | } |