Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class SecurityMerchantPortalGuiDependencyProvider extends SprykerSecurityMerchantPortalGuiDependencyProvider |
||
18 | { |
||
19 | /** |
||
20 | * @return array<\Spryker\Zed\SecurityMerchantPortalGuiExtension\Dependency\Plugin\MerchantUserLoginRestrictionPluginInterface> |
||
21 | */ |
||
22 | protected function getMerchantUserLoginRestrictionPlugins(): array |
||
23 | { |
||
24 | return [ |
||
25 | new AclGroupMerchantUserLoginRestrictionPlugin(), |
||
26 | ]; |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @return array<\Spryker\Zed\SecurityMerchantPortalGuiExtension\Dependency\Plugin\MerchantUserCriteriaExpanderPluginInterface> |
||
31 | */ |
||
32 | protected function getMerchantUserCriteriaExpanderPlugins(): array |
||
33 | { |
||
34 | return [ |
||
35 | new AgentMerchantUserCriteriaExpanderPlugin(), |
||
36 | ]; |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @return array<\Spryker\Zed\SecurityMerchantPortalGuiExtension\Dependency\Plugin\AuthenticationHandlerPluginInterface> |
||
41 | */ |
||
42 | protected function getMerchantUserAuthenticationHandlerPlugins(): array |
||
46 | ]; |
||
47 | } |
||
48 | } |
||
49 |