From f4b83baf740963e9ed0a71f6a8b2755d284b1c75 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Fri, 12 Feb 2016 09:09:39 +0000 Subject: [PATCH] Fix getClientEntity method call --- src/Grant/AbstractGrant.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Grant/AbstractGrant.php b/src/Grant/AbstractGrant.php index 4aa45126..656affd0 100644 --- a/src/Grant/AbstractGrant.php +++ b/src/Grant/AbstractGrant.php @@ -179,10 +179,10 @@ abstract class AbstractGrant implements GrantTypeInterface } $client = $this->clientRepository->getClientEntity( - $this->getIdentifier(), $clientId, $clientSecret, - $redirectUri + $redirectUri, + $this->getIdentifier() ); if (!$client instanceof ClientEntityInterface) {