mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-02 03:32:15 +05:30
Fixing PHP errors
This commit is contained in:
parent
8ac1600063
commit
6cab31d7e8
@ -11,16 +11,16 @@ interface OAuth2ServerDatabase
|
|||||||
public function newSession(
|
public function newSession(
|
||||||
string $clientId,
|
string $clientId,
|
||||||
string $redirectUri,
|
string $redirectUri,
|
||||||
string $type = 'user',
|
$type = 'user',
|
||||||
string $typeId = null,
|
string $typeId = null,
|
||||||
string $authCode = null,
|
string $authCode = null,
|
||||||
string $accessToken = null,
|
string $accessToken = null,
|
||||||
string $stage = 'request'
|
$stage = 'request'
|
||||||
);
|
);
|
||||||
|
|
||||||
public function updateSession(
|
public function updateSession(
|
||||||
string $clientId,
|
string $clientId,
|
||||||
string $type = 'user',
|
$type = 'user',
|
||||||
string $typeId = null,
|
string $typeId = null,
|
||||||
string $authCode = null,
|
string $authCode = null,
|
||||||
string $accessToken = null,
|
string $accessToken = null,
|
||||||
|
Loading…
Reference in New Issue
Block a user