From 035a6a07407ba887d894a79db45ada38e44dac1b Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Thu, 6 Jun 2024 10:39:40 -0700 Subject: [PATCH] remove unused imports --- src/AccessToken.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/AccessToken.php b/src/AccessToken.php index a46a4826a..0fe2b64f8 100644 --- a/src/AccessToken.php +++ b/src/AccessToken.php @@ -33,7 +33,6 @@ use Psr\Cache\CacheItemPoolInterface; use RuntimeException; use stdClass; -use TypeError; use UnexpectedValueException; /** @@ -126,7 +125,7 @@ public function verify($token, array $options = []) // create an array of key IDs to certs for the JWT library $keys[(string) $cert['kid']] = JWK::parseKey($cert); } - $headers = new \stdClass(); + $headers = new stdClass(); $payload = ($this->jwt)::decode($token, $keys, $headers); if ($audience) {