diff options
author | Chris Raynor <chris@firebase.com> | 2014-06-18 10:29:52 -0700 |
---|---|---|
committer | Chris Raynor <chris@firebase.com> | 2014-06-18 10:29:52 -0700 |
commit | 5c2eb12a2cd988afb2ea376d4398c80a93767e3d (patch) | |
tree | 301721cef7c26de293cd97d1356240848c9cf96c | |
parent | 2490881237021b9b0e6abbb4c6221ed461e227ff (diff) | |
download | php-jwt-5c2eb12a2cd988afb2ea376d4398c80a93767e3d.zip php-jwt-5c2eb12a2cd988afb2ea376d4398c80a93767e3d.tar.gz php-jwt-5c2eb12a2cd988afb2ea376d4398c80a93767e3d.tar.bz2 |
whitespace cleanup
-rw-r--r-- | Authentication/JWT.php | 1 |
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; } |