()
| 44 | } |
| 45 | |
| 46 | public static function masterKeyIsConfigured(): bool |
| 47 | { |
| 48 | try { |
| 49 | return (self::getMasterKeyOrNull() !== null); |
| 50 | } catch (\Throwable $e) { |
| 51 | return false; |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | private static function parseKeyString(string $raw): ?string |
| 56 | { |
no test coverage detected