From e85a8e31e8e6cc1bf0ec3e15cc94fdebca898783 Mon Sep 17 00:00:00 2001 From: sephster Date: Sun, 2 Sep 2018 14:58:02 +0100 Subject: [PATCH] Remove assignment as not needed --- src/Grant/AuthCodeGrant.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Grant/AuthCodeGrant.php b/src/Grant/AuthCodeGrant.php index 378f2096..3d692758 100644 --- a/src/Grant/AuthCodeGrant.php +++ b/src/Grant/AuthCodeGrant.php @@ -83,7 +83,7 @@ class AuthCodeGrant extends AbstractAuthorizeGrant // Only validate the client if it is confidential if ($client->isConfidential()) { - $client = $this->validateClient($request); + $this->validateClient($request); } $encryptedAuthCode = $this->getRequestParameter('code', $request, null);