mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-15 17:56:14 +05:30
Use US spelling
This commit is contained in:
parent
4ebf3f838f
commit
5e4cd98706
@ -66,12 +66,11 @@ class AuthCodeGrant extends AbstractGrant
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check authorise parameters
|
* Check authorize parameters
|
||||||
*
|
*
|
||||||
* @throws
|
* @return array Authorize request parameters
|
||||||
* @return array Authorise request parameters
|
|
||||||
*/
|
*/
|
||||||
public function checkAuthoriseParams()
|
public function checkAuthorizeParams()
|
||||||
{
|
{
|
||||||
// Get required params
|
// Get required params
|
||||||
$clientId = $this->server->getRequest()->query->get('client_id', null);
|
$clientId = $this->server->getRequest()->query->get('client_id', null);
|
||||||
@ -125,14 +124,14 @@ class AuthCodeGrant extends AbstractGrant
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse a new authorise request
|
* Parse a new authorize request
|
||||||
*
|
*
|
||||||
* @param string $type The session owner's type
|
* @param string $type The session owner's type
|
||||||
* @param string $typeId The session owner's ID
|
* @param string $typeId The session owner's ID
|
||||||
* @param array $authParams The authorise request $_GET parameters
|
* @param array $authParams The authorize request $_GET parameters
|
||||||
* @return string An authorisation code
|
* @return string An authorisation code
|
||||||
*/
|
*/
|
||||||
public function newAuthoriseRequest($type, $typeId, $authParams = [])
|
public function newAuthorizeRequest($type, $typeId, $authParams = [])
|
||||||
{
|
{
|
||||||
// Create a new session
|
// Create a new session
|
||||||
$session = new SessionEntity($this->server);
|
$session = new SessionEntity($this->server);
|
||||||
@ -201,7 +200,7 @@ class AuthCodeGrant extends AbstractGrant
|
|||||||
throw new Exception\InvalidRequestException('code');
|
throw new Exception\InvalidRequestException('code');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check redirect URI presented matches redirect URI originally used in authorise request
|
// Check redirect URI presented matches redirect URI originally used in authorize request
|
||||||
if ($code->getRedirectUri() !== $redirectUri) {
|
if ($code->getRedirectUri() !== $redirectUri) {
|
||||||
throw new Exception\InvalidRequestException('redirect_uri');
|
throw new Exception\InvalidRequestException('redirect_uri');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user