From 58adefa7d0f3a1031268bf9f55a6c0075a151a77 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Thu, 8 May 2014 10:29:52 +0100 Subject: [PATCH] Removed unnecessary parameter --- src/Exception/AccessDeniedException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exception/AccessDeniedException.php b/src/Exception/AccessDeniedException.php index b8516ba3..e5d84b61 100644 --- a/src/Exception/AccessDeniedException.php +++ b/src/Exception/AccessDeniedException.php @@ -29,7 +29,7 @@ class AccessDeniedException extends OAuthException /** * {@inheritdoc} */ - public function __construct($parameter) + public function __construct() { parent::__construct('The resource owner or authorization server denied the request.'); }