Skip to content

Commit 74f2b17

Browse files
committed
fix: Add correct type for $jwt, should be JWT
1 parent 8142a3e commit 74f2b17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/AccessToken/Verify.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class Verify
6060
/**
6161
* @var \Firebase\JWT\JWT
6262
*/
63-
public $jwt;
63+
public JWT $jwt;
6464

6565
/**
6666
* Instantiates the class, but does not initiate the login flow, leaving it
@@ -69,7 +69,7 @@ class Verify
6969
public function __construct(
7070
?ClientInterface $http = null,
7171
?CacheItemPoolInterface $cache = null,
72-
?string $jwt = null
72+
?JWT $jwt = null
7373
) {
7474
if (null === $http) {
7575
$http = new Client();

0 commit comments

Comments
 (0)