We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916864e commit aa60b99Copy full SHA for aa60b99
src/JWT.php
@@ -185,6 +185,7 @@ public static function decode(
185
if (isset($payload->exp) && ($timestamp - static::$leeway) >= $payload->exp) {
186
$ex = new ExpiredException('Expired token');
187
$ex->setPayload($payload);
188
+ $ex->setTimestamp($timestamp);
189
throw $ex;
190
}
191
0 commit comments