mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-10 07:22:11 +05:30
Fix incorrect variable reference
This commit is contained in:
parent
d07b5a4a03
commit
04807a1e2a
@ -49,6 +49,14 @@ class AuthCodeGrant extends AbstractAuthorizeGrant
|
|||||||
$this->refreshTokenTTL = new \DateInterval('P1M');
|
$this->refreshTokenTTL = new \DateInterval('P1M');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disable the requirement for a code challenge for public clients.
|
||||||
|
*/
|
||||||
|
public function disableCodeChallengeForPublicClients()
|
||||||
|
{
|
||||||
|
$this->requireCodeChallengeForPublicClients = false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Respond to an access token request.
|
* Respond to an access token request.
|
||||||
*
|
*
|
||||||
@ -185,7 +193,7 @@ class AuthCodeGrant extends AbstractAuthorizeGrant
|
|||||||
);
|
);
|
||||||
// @codeCoverageIgnoreEnd
|
// @codeCoverageIgnoreEnd
|
||||||
}
|
}
|
||||||
} else if ($this->$requireCodeChallengeForPublicClients && !$client->isConfidential()) {
|
} else if ($this->requireCodeChallengeForPublicClients && !$client->isConfidential()) {
|
||||||
throw OAuthServerException::invalidRequest('code_challenge', 'Code challenge must be provided for public clients');
|
throw OAuthServerException::invalidRequest('code_challenge', 'Code challenge must be provided for public clients');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user