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

Commit 34bcfc3

Browse files
committed
Merge branch '2.6' into 2.7
* 2.6: fixed CS fixed CS Conflicts: src/Symfony/Component/Security/Http/Tests/Firewall/RememberMeListenerTest.php
2 parents 41cb2c2 + c7f7fcf commit 34bcfc3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Core/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function authenticate(TokenInterface $token)
6060
throw new BadCredentialsException('No pre-authenticated principal found in request.');
6161
}
6262

63-
$user = $this->userProvider->loadUserByUsername($user);
63+
$user = $this->userProvider->loadUserByUsername($user);
6464

6565
$this->userChecker->checkPostAuth($user);
6666

Core/Tests/Validator/Constraints/LegacyUserPasswordValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* @author Bernhard Schussek <bschussek@gmail.com>
1919
* @group legacy
2020
*/
21-
class LegacyUserPasswordValidatorApiTest extends UserPasswordValidatorTest
21+
class LegacyUserPasswordValidatorTest extends UserPasswordValidatorTest
2222
{
2323
protected function getApiVersion()
2424
{

Http/Tests/Firewall/RememberMeListenerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public function testOnCoreSecurityIgnoresAuthenticationExceptionThrownByAuthenti
106106
*/
107107
public function testOnCoreSecurityIgnoresAuthenticationOptionallyRethrowsExceptionThrownAuthenticationManagerImplementation()
108108
{
109-
list($listener, $tokenStorage, $service, $manager,) = $this->getListener(false, false);
109+
list($listener, $tokenStorage, $service, $manager) = $this->getListener(false, false);
110110

111111
$tokenStorage
112112
->expects($this->once())

0 commit comments

Comments
 (0)