summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Raynor <chris@firebase.com>2014-06-18 10:29:52 -0700
committerChris Raynor <chris@firebase.com>2014-06-18 10:29:52 -0700
commit5c2eb12a2cd988afb2ea376d4398c80a93767e3d (patch)
tree301721cef7c26de293cd97d1356240848c9cf96c
parent2490881237021b9b0e6abbb4c6221ed461e227ff (diff)
downloadphp-jwt-5c2eb12a2cd988afb2ea376d4398c80a93767e3d.zip
php-jwt-5c2eb12a2cd988afb2ea376d4398c80a93767e3d.tar.gz
php-jwt-5c2eb12a2cd988afb2ea376d4398c80a93767e3d.tar.bz2
whitespace cleanup
-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;
}