Skip to content

Commit 2cdc857

Browse files
committed
fix: RedisHandler::clearToken 方法第二个参数类型有误 #7
1 parent 25bd23d commit 2cdc857

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/JwtToken.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
use Tinywan\Jwt\Exception\JwtConfigException;
2222
use Tinywan\Jwt\Exception\JwtTokenExpiredException;
2323
use UnexpectedValueException;
24+
use function _PHPStan_c0c409264\RingCentral\Psr7\str;
2425

2526
class JwtToken
2627
{
@@ -356,7 +357,7 @@ public static function clear(): bool
356357
{
357358
$config = self::_getConfig();
358359
if ($config['is_single_device']) {
359-
return RedisHandler::clearToken($config['cache_token_pre'], self::getCurrentId());
360+
return RedisHandler::clearToken($config['cache_token_pre'], (string) self::getCurrentId());
360361
}
361362
return true;
362363
}

0 commit comments

Comments
 (0)