Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class MultiFactorAuthDependencyProvider extends SprykerGlueApplicationDependencyProvider |
||
17 | { |
||
18 | /** |
||
19 | * @return array<\Spryker\Shared\MultiFactorAuthExtension\Dependency\Plugin\MultiFactorAuthPluginInterface> |
||
20 | */ |
||
21 | protected function getCustomerMultiFactorAuthPlugins(): array |
||
22 | { |
||
23 | return [ |
||
24 | new CustomerEmailMultiFactorAuthPlugin(), |
||
25 | ]; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @return array<\Spryker\Shared\MultiFactorAuthExtension\Dependency\Plugin\MultiFactorAuthPluginInterface> |
||
30 | */ |
||
31 | protected function getUserMultiFactorAuthPlugins(): array |
||
35 | ]; |
||
36 | } |
||
38 |