From 1e0adb18d510fc1fa1a07611ddf96d27c795a40c Mon Sep 17 00:00:00 2001 From: Jose Ochoa Date: Mon, 16 Dec 2024 10:31:42 -0600 Subject: [PATCH] Add correct type for $jwt, should be JWT --- src/AccessToken/Verify.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AccessToken/Verify.php b/src/AccessToken/Verify.php index 714b5d12d..4f52703ca 100644 --- a/src/AccessToken/Verify.php +++ b/src/AccessToken/Verify.php @@ -60,7 +60,7 @@ class Verify /** * @var \Firebase\JWT\JWT */ - public $jwt; + public JWT $jwt; /** * Instantiates the class, but does not initiate the login flow, leaving it @@ -69,7 +69,7 @@ class Verify public function __construct( ?ClientInterface $http = null, ?CacheItemPoolInterface $cache = null, - ?string $jwt = null + ?JWT $jwt = null ) { if (null === $http) { $http = new Client();