Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Commit

Permalink
Merge pull request #77 from okta/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
bretterer authored Mar 4, 2021
2 parents 22a1c0a + de5d872 commit 0f14ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JwtVerifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public function verify($jwt)

$decoded = $this->adaptor->decode($jwt, $keys);

$this->validateClaims($decoded->getClaims());
$this->validateClaims($decoded->getClaims(), "access"); // This is hard coded to access token since this was the original functionality.

return $decoded;
}
Expand Down

0 comments on commit 0f14ce1

Please sign in to comment.