Skip to content

Commit

Permalink
Apply fixes from StyleCI (#283)
Browse files Browse the repository at this point in the history
Co-authored-by: markitosgv <markitosgv@users.noreply.github.com>
  • Loading branch information
markitosgv and markitosgv authored Nov 4, 2021
1 parent ef32366 commit 36a6b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Security/Authenticator/RefreshTokenAuthenticator.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function getUser($credentials, UserProviderInterface $userProvider)

try {
$user = $userProvider->loadUserByUsername($username);
} catch (UsernameNotFoundException | UserNotFoundException $exception) {
} catch (UsernameNotFoundException|UserNotFoundException $exception) {
throw new UnknownUserFromRefreshTokenException(sprintf('User with refresh token "%s" does not exist.', $refreshToken), $exception->getCode(), $exception);
}

Expand Down

0 comments on commit 36a6b49

Please sign in to comment.