mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-25 22:49:49 +05:30
Fix getClientEntity method call
This commit is contained in:
parent
5a08a0cbe2
commit
f4b83baf74
@ -179,10 +179,10 @@ abstract class AbstractGrant implements GrantTypeInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
$client = $this->clientRepository->getClientEntity(
|
$client = $this->clientRepository->getClientEntity(
|
||||||
$this->getIdentifier(),
|
|
||||||
$clientId,
|
$clientId,
|
||||||
$clientSecret,
|
$clientSecret,
|
||||||
$redirectUri
|
$redirectUri,
|
||||||
|
$this->getIdentifier()
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!$client instanceof ClientEntityInterface) {
|
if (!$client instanceof ClientEntityInterface) {
|
||||||
|
Loading…
Reference in New Issue
Block a user