mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
Removed stage parameter
This commit is contained in:
parent
67641acdff
commit
4727a83d84
@ -33,7 +33,6 @@ interface SessionInterface
|
|||||||
* @param string $accessToken The access token (default = "null")
|
* @param string $accessToken The access token (default = "null")
|
||||||
* @param string $refreshToken The refresh token (default = "null")
|
* @param string $refreshToken The refresh token (default = "null")
|
||||||
* @param int $accessTokenExpire The expiry time of an access token as a unix timestamp
|
* @param int $accessTokenExpire The expiry time of an access token as a unix timestamp
|
||||||
* @param string $stage The stage of the session (default ="request")
|
|
||||||
* @return int The session ID
|
* @return int The session ID
|
||||||
*/
|
*/
|
||||||
public function createSession(
|
public function createSession(
|
||||||
@ -44,8 +43,7 @@ interface SessionInterface
|
|||||||
$authCode = null,
|
$authCode = null,
|
||||||
$accessToken = null,
|
$accessToken = null,
|
||||||
$refreshToken = null,
|
$refreshToken = null,
|
||||||
$accessTokenExpire = null,
|
$accessTokenExpire = null
|
||||||
$stage = 'requested'
|
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user