diff options
author | Aaron Hedges <aaron@vimeo.com> | 2015-07-01 14:18:43 -0400 |
---|---|---|
committer | Aaron Hedges <aaron@vimeo.com> | 2015-07-01 14:18:43 -0400 |
commit | 3a6b01aab96aeab6d360f42729d89122a7314d33 (patch) | |
tree | c4ca104e8315242173bd3bdf16f3225d3856b04a /src | |
parent | d4fa25d9afd52cc1cdfe00b9d3dac33b30aa3877 (diff) | |
download | php-jwt-3a6b01aab96aeab6d360f42729d89122a7314d33.zip php-jwt-3a6b01aab96aeab6d360f42729d89122a7314d33.tar.gz php-jwt-3a6b01aab96aeab6d360f42729d89122a7314d33.tar.bz2 |
fix unexpectedvalueexceptions and add unit tests
Diffstat (limited to 'src')
-rw-r--r-- | src/JWT.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/JWT.php b/src/JWT.php index 855b742..d1a108f 100644 --- a/src/JWT.php +++ b/src/JWT.php @@ -2,6 +2,7 @@ namespace Firebase\JWT; use \DomainException; +use \UnexpectedValueException; use \DateTime; /** |