Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class AuthorizationConfiguration extends PluginRoutingKeyConfiguration implements AuthorizationConfigurationInterface |
||
19 | { |
||
20 | protected const CFG_USERNAME = 'REDIS_%s_AUTH_USERNAME'; |
||
21 | protected const CFG_PASSWORD = 'REDIS_%s_AUTH_PASSWORD'; |
||
22 | |||
23 | /** |
||
24 | * {@inheritDoc} |
||
25 | */ |
||
26 | 2 | public function username(): ?string |
|
29 | } |
||
30 | |||
31 | /** |
||
32 | * {@inheritDoc} |
||
33 | */ |
||
34 | 2 | public function password(): ?string |
|
39 |