| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class MultiFactorAuthDependencyProvider extends SprykerMultiFactorAuthDependencyProvider |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @return array<\Spryker\Shared\MultiFactorAuthExtension\Dependency\Plugin\MultiFactorAuthPluginInterface> |
||
| 22 | */ |
||
| 23 | protected function getCustomerMultiFactorAuthPlugins(): array |
||
| 27 | ]; |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return array<\Spryker\Shared\MultiFactorAuthExtension\Dependency\Plugin\MultiFactorAuthPluginInterface> |
||
| 32 | */ |
||
| 33 | protected function getAgentMultiFactorAuthPlugins(): array |
||
| 34 | { |
||
| 35 | return [ |
||
| 36 | new AgentUserEmailMultiFactorAuthPlugin(), |
||
| 37 | ]; |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return array<\Spryker\Shared\MultiFactorAuthExtension\Dependency\Plugin\PostLoginMultiFactorAuthenticationPluginInterface> |
||
| 42 | */ |
||
| 43 | protected function getPostLoginMultiFactorAuthenticationPlugins(): array |
||
| 48 | ]; |
||
| 49 | } |
||
| 51 |