summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Authentication/JWT.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/Authentication/JWT.php b/Authentication/JWT.php
index afceed6..aabc65b 100644
--- a/Authentication/JWT.php
+++ b/Authentication/JWT.php
@@ -65,7 +65,6 @@ class JWT
if (isset($payload->exp) && time() >= $payload->exp){
throw new UnexpectedValueException('Expired Token');
}
-
}
return $payload;
}