Skip to content

Commit ff50926

Browse files
committed
Add correct type for , should be JWT
1 parent 8142a3e commit ff50926

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/AccessToken/Verify.php

Lines changed: 2 additions & 2 deletions
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)