Skip to content

Commit

Permalink
Add correct type for $jwt, should be JWT
Browse files Browse the repository at this point in the history
  • Loading branch information
jose-ochoa committed Dec 16, 2024
1 parent 8142a3e commit 1e0adb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AccessToken/Verify.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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();
Expand Down

0 comments on commit 1e0adb1

Please sign in to comment.