From f8b2e80ef384c8923bd0eb69db20a2e5fc5612d6 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Mon, 18 Apr 2016 12:10:57 +0100 Subject: [PATCH] Removed unnecessary parameter usage --- src/AuthorizationServer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AuthorizationServer.php b/src/AuthorizationServer.php index b0ba7598..6eb7b5d6 100644 --- a/src/AuthorizationServer.php +++ b/src/AuthorizationServer.php @@ -204,7 +204,7 @@ class AuthorizationServer implements EmitterAwareInterface protected function getResponseType() { if (!$this->responseType instanceof ResponseTypeInterface) { - $this->responseType = new BearerTokenResponse($this->accessTokenRepository); + $this->responseType = new BearerTokenResponse(); } $this->responseType->setPrivateKey($this->privateKey);