From 212938d1e243db748ba3405d2e616b5f496041ba Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Sun, 17 Jan 2016 14:55:48 +0000 Subject: [PATCH] Fixed call to static --- src/Exception/OAuthServerException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exception/OAuthServerException.php b/src/Exception/OAuthServerException.php index 46a79c1a..b0309290 100644 --- a/src/Exception/OAuthServerException.php +++ b/src/Exception/OAuthServerException.php @@ -200,7 +200,7 @@ class OAuthServerException extends \Exception */ public static function accessDenied($hint = null) { - return new static('The server denied the request.', 401, $hint); + return new static('The server denied the request.', 'access_denied', 401, $hint); } /**