mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-01 16:33:07 +05:30
Renamed variable as $authParams is no longer used
This commit is contained in:
parent
a98dcea6fe
commit
d99002ef2f
@ -347,21 +347,21 @@ class AuthServer
|
|||||||
*/
|
*/
|
||||||
public function issueAccessToken($inputParams = array())
|
public function issueAccessToken($inputParams = array())
|
||||||
{
|
{
|
||||||
$authParams['grant_type'] = (isset($inputParams['grant_type'])) ?
|
$grantType = (isset($inputParams['grant_type'])) ?
|
||||||
$inputParams['grant_type'] :
|
$inputParams['grant_type'] :
|
||||||
self::getRequest()->post('grant_type');
|
self::getRequest()->post('grant_type');
|
||||||
|
|
||||||
if (is_null($authParams['grant_type'])) {
|
if (is_null($grantType)) {
|
||||||
throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'grant_type'), 0);
|
throw new Exception\ClientException(sprintf(self::$exceptionMessages['invalid_request'], 'grant_type'), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ensure grant type is one that is recognised and is enabled
|
// Ensure grant type is one that is recognised and is enabled
|
||||||
if ( ! in_array($authParams['grant_type'], array_keys(self::$grantTypes))) {
|
if ( ! in_array($grantType, array_keys(self::$grantTypes))) {
|
||||||
throw new Exception\ClientException(sprintf(self::$exceptionMessages['unsupported_grant_type'], $authParams['grant_type']), 7);
|
throw new Exception\ClientException(sprintf(self::$exceptionMessages['unsupported_grant_type'], $grantType), 7);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Complete the flow
|
// Complete the flow
|
||||||
return $this->getGrantType($authParams['grant_type'])->completeFlow($inputParams, $authParams);
|
return $this->getGrantType($grantType)->completeFlow($inputParams);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user