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