Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer committed Jun 6, 2024
1 parent f53909d commit 035a6a0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/AccessToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
use Psr\Cache\CacheItemPoolInterface;
use RuntimeException;
use stdClass;
use TypeError;
use UnexpectedValueException;

/**
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 035a6a0

Please sign in to comment.