Skip to content

Commit

Permalink
fix: correct type for jwt constructor arg (#2648)
Browse files Browse the repository at this point in the history
Co-authored-by: Brent Shaffer <[email protected]>
  • Loading branch information
jose-ochoa and bshaffer authored Dec 16, 2024
1 parent 8142a3e commit 31a9861
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AccessToken/Verify.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 31a9861

Please sign in to comment.