diff options
-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'); } |