diff options
author | John LeSueur <john.lesueur@gmail.com> | 2014-06-19 14:54:22 -0600 |
---|---|---|
committer | John LeSueur <john.lesueur@gmail.com> | 2014-06-19 14:54:22 -0600 |
commit | 144e201a30f96119eafe1c597b0736612b86317c (patch) | |
tree | 4d25276cbd774025467205bcb824f29bdb2828dd | |
parent | b31429e98267ca75007d64d9f560777b701e15d4 (diff) | |
download | php-jwt-144e201a30f96119eafe1c597b0736612b86317c.zip php-jwt-144e201a30f96119eafe1c597b0736612b86317c.tar.gz php-jwt-144e201a30f96119eafe1c597b0736612b86317c.tar.bz2 |
Update JWT.php
-rw-r--r-- | Authentication/JWT.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Authentication/JWT.php b/Authentication/JWT.php index efb2ef0..875a177 100644 --- a/Authentication/JWT.php +++ b/Authentication/JWT.php @@ -154,7 +154,7 @@ class JWT } } - public static function verify($msg, $signature $key, $method = 'HS256') { + public static function verify($msg, $signature, $key, $method = 'HS256') { if (empty(self::$methods[$method])) { throw new DomainException('Algorithm not supported'); } |