Fixed call to static

This commit is contained in:
Alex Bilbie 2016-01-17 14:55:48 +00:00
parent cd19f11799
commit 212938d1e2

View File

@ -200,7 +200,7 @@ class OAuthServerException extends \Exception
*/ */
public static function accessDenied($hint = null) 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);
} }
/** /**