From 5f22ead2871ae7f1d9051f5f52384e09d6c2a7bf Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Sun, 17 Jan 2016 14:11:21 +0000 Subject: [PATCH] Updated access denied hint --- 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 701f1335..c7a04b9c 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 resource owner or authorization server denied the request.', 401, $hint); + return new static('The server denied the request.', 401, $hint); } /**