We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25bd23d commit 2cdc857Copy full SHA for 2cdc857
src/JwtToken.php
@@ -21,6 +21,7 @@
21
use Tinywan\Jwt\Exception\JwtConfigException;
22
use Tinywan\Jwt\Exception\JwtTokenExpiredException;
23
use UnexpectedValueException;
24
+use function _PHPStan_c0c409264\RingCentral\Psr7\str;
25
26
class JwtToken
27
{
@@ -356,7 +357,7 @@ public static function clear(): bool
356
357
358
$config = self::_getConfig();
359
if ($config['is_single_device']) {
- return RedisHandler::clearToken($config['cache_token_pre'], self::getCurrentId());
360
+ return RedisHandler::clearToken($config['cache_token_pre'], (string) self::getCurrentId());
361
}
362
return true;
363
0 commit comments