mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
Removed extra bracket
This commit is contained in:
@@ -229,7 +229,7 @@ class AuthCode implements GrantTypeInterface {
|
|||||||
$this->authServer->getStorage('session')->removeAuthCode($session['id']);
|
$this->authServer->getStorage('session')->removeAuthCode($session['id']);
|
||||||
|
|
||||||
// Create an access token
|
// Create an access token
|
||||||
$accessTokenId = $this->authServer->getStorage('session')->associateAccessToken($session['id'], $accessToken, $accessTokenExpires));
|
$accessTokenId = $this->authServer->getStorage('session')->associateAccessToken($session['id'], $accessToken, $accessTokenExpires);
|
||||||
|
|
||||||
// Associate scopes with the access token
|
// Associate scopes with the access token
|
||||||
if ( ! is_null($session['scope_ids'])) {
|
if ( ! is_null($session['scope_ids'])) {
|
||||||
|
Reference in New Issue
Block a user