Skip to content

Commit

Permalink
More code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ssigwart authored Aug 8, 2024
1 parent e0d630c commit c406da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Grant/RefreshTokenGrant.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function respondToAccessTokenRequest(
// Issue and persist new access token
$userId = $oldRefreshToken['user_id'];
if (is_int($userId)) {
$userId = (string)$userId;
$userId = (string) $userId;
}
$accessToken = $this->issueAccessToken($accessTokenTTL, $client, $userId, $scopes);
$this->getEmitter()->emit(new RequestAccessTokenEvent(RequestEvent::ACCESS_TOKEN_ISSUED, $request, $accessToken));
Expand Down

0 comments on commit c406da5

Please sign in to comment.