We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 257e089 commit 06e8926Copy full SHA for 06e8926
2 files changed
composer.json
@@ -24,7 +24,7 @@
24
"phpspec/prophecy-phpunit": "^2.1",
25
"sebastian/comparator": ">=1.2.3",
26
"phpseclib/phpseclib": "^3.0.35",
27
- "kelvinmo/simplejwt": "0.7.1",
+ "kelvinmo/simplejwt": "^1.1.0",
28
"webmozart/assert": "^1.11||^2.0",
29
"symfony/process": "^6.0||^7.0",
30
"symfony/filesystem": "^6.3||^7.3"
tests/AccessTokenTest.php
@@ -592,7 +592,7 @@ protected function callSimpleJwtDecode(array $args = [])
592
{
593
if (isset($this->mocks['decode'])) {
594
$claims = call_user_func_array($this->mocks['decode'], $args);
595
- return new SimpleJWT(null, (array) $claims);
+ return new SimpleJWT([], (array) $claims);
596
}
597
598
return parent::callSimpleJwtDecode($args);
0 commit comments