(string $token)
| 777 | } |
| 778 | |
| 779 | protected static function rememberTokenHash(string $token): string |
| 780 | { |
| 781 | $key = $GLOBALS['encryptionKey'] ?? ''; |
| 782 | return hash_hmac('sha256', $token, $key); |
| 783 | } |
| 784 | |
| 785 | protected static function loadRememberTokenStore(): array |
| 786 | { |
no outgoing calls
no test coverage detected