Skip to content

Commit 8228431

Browse files
stembrainbshaffer
authored andcommitted
Comment typo fix (#253)
1 parent 264e5c7 commit 8228431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JWT.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public static function decode($jwt, $key, array $allowed_algs = array())
113113
throw new SignatureInvalidException('Signature verification failed');
114114
}
115115

116-
// Check if the nbf if it is defined. This is the time that the
116+
// Check the nbf if it is defined. This is the time that the
117117
// token can actually be used. If it's not yet that time, abort.
118118
if (isset($payload->nbf) && $payload->nbf > ($timestamp + static::$leeway)) {
119119
throw new BeforeValidException(

0 commit comments

Comments
 (0)