(string $value)
| 93 | } |
| 94 | |
| 95 | private static function encryptSecret(string $value): string |
| 96 | { |
| 97 | $value = (string)$value; |
| 98 | if ($value === '') { |
| 99 | return ''; |
| 100 | } |
| 101 | return encryptData($value, $GLOBALS['encryptionKey']); |
| 102 | } |
| 103 | |
| 104 | private static function defaultLocalSource(): array |
| 105 | { |
no test coverage detected