From 6fbbb9390aca42abd24798c39ccf27eebe1855ca Mon Sep 17 00:00:00 2001 From: Eric Stern Date: Fri, 19 Jul 2024 14:03:04 -0700 Subject: [PATCH] 7.4: no trailing comma allowed --- src/JWT.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/JWT.php b/src/JWT.php index c0e5f17..0989281 100644 --- a/src/JWT.php +++ b/src/JWT.php @@ -93,7 +93,7 @@ public function setKeys(KeyContainer $keys): self public static function fromEncoded( #[SensitiveParameter] string $encoded, - KeyContainer $keys, + KeyContainer $keys ): self { // This should exactly follow s7.2 of the IETF JWT spec $parts = explode('.', $encoded);