Added $mustValidateSecret parameter to ClientRepositoryInterface:: getClientEntity(). Fixes #550

This commit is contained in:
Alex Bilbie
2016-04-18 08:32:49 +01:00
parent 5b192b3548
commit fb8f47e868
4 changed files with 14 additions and 7 deletions

View File

@@ -165,7 +165,9 @@ class AuthCodeGrant extends AbstractAuthorizeGrant
$client = $this->clientRepository->getClientEntity(
$clientId,
$this->getIdentifier()
$this->getIdentifier(),
null,
false
);
if ($client instanceof ClientEntityInterface === false) {