File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,13 @@ class JWT
30
30
* @param bool $verify Don't skip verification process
31
31
*
32
32
* @return object The JWT's payload as a PHP object
33
- * @throws DomainException Algorithm was not provided
34
- * @throws UnexpectedValueException Provided JWT was invalid
35
- * @throws BeforeValidException Provided JWT is trying to be used before it's eligible as defined by 'nbf'
36
- * @throws BeforeValidException Provided JWT is trying to be used before it's been created as defined by 'iat'
37
- * @throws ExpiredException Provided JWT has since expired, as defined by the 'exp' claim
33
+ *
34
+ * @throws DomainException Algorithm was not provided
35
+ * @throws UnexpectedValueException Provided JWT was invalid
36
+ * @throws SignatureInvalidException Provided JWT was invalid because the signature verification failed
37
+ * @throws BeforeValidException Provided JWT is trying to be used before it's eligible as defined by 'nbf'
38
+ * @throws BeforeValidException Provided JWT is trying to be used before it's been created as defined by 'iat'
39
+ * @throws ExpiredException Provided JWT has since expired, as defined by the 'exp' claim
38
40
*
39
41
* @uses jsonDecode
40
42
* @uses urlsafeB64Decode
You can’t perform that action at this time.
0 commit comments