We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7ef422 commit 5163ec8Copy full SHA for 5163ec8
component/Token/Jwt.php
@@ -28,7 +28,7 @@ public function decode(
28
): array {
29
try {
30
return (array) FirebaseJwt::decode($this->value, new FirebaseKey($publicKey, self::ALGORITHM));
31
- } catch (ExpiredException | SignatureInvalidException $e) {
+ } catch (ExpiredException | SignatureInvalidException | \Exception) {
32
throw new NotCompliant();
33
}
34
0 commit comments