Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit 3c5f20a

Browse files
CS fixes
1 parent 6bc6120 commit 3c5f20a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Core/Authentication/Provider/UserAuthenticationProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public function authenticate(TokenInterface $token)
8181
$this->userChecker->checkPreAuth($user);
8282
$this->checkAuthentication($user, $token);
8383
$this->userChecker->checkPostAuth($user);
84-
} catch (AccountStatusException | BadCredentialsException $e) {
84+
} catch (AccountStatusException|BadCredentialsException $e) {
8585
if ($this->hideUserNotFoundExceptions) {
8686
throw new BadCredentialsException('Bad credentials.', 0, $e);
8787
}

Http/Tests/Firewall/UsernamePasswordFormAuthenticationListenerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public function testHandleNonStringUsernameWithObject(bool $postOnly)
160160
/**
161161
* @dataProvider postOnlyDataProvider
162162
*/
163-
public function testHandleNonStringUsernameWith__toString(bool $postOnly)
163+
public function testHandleNonStringUsernameWithToString(bool $postOnly)
164164
{
165165
$usernameClass = $this->createMock(DummyUserClass::class);
166166
$usernameClass

0 commit comments

Comments
 (0)