Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class SslConfiguration extends PluginRoutingKeyConfiguration implements SslConfigurationInterface |
||
19 | { |
||
20 | public const SSL_ENABLED_DEFAULT = false; |
||
21 | public const SSL_VERIFY_DEFAULT = false; |
||
22 | |||
23 | protected const CFG_SSL_ENABLED = 'REDIS_%s_SSL_ENABLED'; |
||
24 | protected const CFG_SSL_VERIFY = 'REDIS_%s_SSL_VERIFY'; |
||
25 | |||
26 | /** |
||
27 | * @return bool |
||
28 | */ |
||
29 | 2 | public function verify(): bool |
|
32 | } |
||
33 | |||
34 | /** |
||
35 | * @return bool |
||
36 | */ |
||
37 | 2 | public function enabled(): bool |
|
42 |