From 1c3f778da9d9fb4a9e2f6de8aa7ac0a3a048bf5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Fri, 19 Dec 2025 12:26:15 +0100 Subject: [PATCH] PR review fix --- src/Appwrite/Auth/Key.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Auth/Key.php b/src/Appwrite/Auth/Key.php index df906ccd15..44f546eaa4 100644 --- a/src/Appwrite/Auth/Key.php +++ b/src/Appwrite/Auth/Key.php @@ -104,7 +104,7 @@ class Key public static function decode( Document $project, string $key - ): static { + ) { if (\str_contains($key, '_')) { [$type, $secret] = \explode('_', $key, 2); } else {