mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-22 13:09:44 +05:30
Fixed method parameter name
This commit is contained in:
parent
46648f3e80
commit
e7e4892408
@ -39,7 +39,7 @@ interface GrantTypeInterface
|
|||||||
* Return an access token
|
* Return an access token
|
||||||
*
|
*
|
||||||
* @param \Psr\Http\Message\ServerRequestInterface $request
|
* @param \Psr\Http\Message\ServerRequestInterface $request
|
||||||
* @param \League\OAuth2\Server\ResponseTypes\ResponseTypeInterface $tokenType
|
* @param \League\OAuth2\Server\ResponseTypes\ResponseTypeInterface $responseType
|
||||||
* @param \DateInterval $accessTokenTTL
|
* @param \DateInterval $accessTokenTTL
|
||||||
* @param string $scopeDelimiter
|
* @param string $scopeDelimiter
|
||||||
*
|
*
|
||||||
@ -47,7 +47,7 @@ interface GrantTypeInterface
|
|||||||
*/
|
*/
|
||||||
public function respondToRequest(
|
public function respondToRequest(
|
||||||
ServerRequestInterface $request,
|
ServerRequestInterface $request,
|
||||||
ResponseTypeInterface $tokenType,
|
ResponseTypeInterface $responseType,
|
||||||
DateInterval $accessTokenTTL,
|
DateInterval $accessTokenTTL,
|
||||||
$scopeDelimiter = ' '
|
$scopeDelimiter = ' '
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user