Skip to content

Commit 961d061

Browse files
Run php-cs-fixer
1 parent 41a61a2 commit 961d061

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tests/Authentication/AuthenticationTrustResolverTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
use Symfony\Component\Security\Core\Authentication\Token\AnonymousToken;
1717
use Symfony\Component\Security\Core\Authentication\Token\RememberMeToken;
1818
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
19-
use Symfony\Component\Security\Core\User\UserInterface;
2019
use Symfony\Component\Security\Core\User\InMemoryUser;
20+
use Symfony\Component\Security\Core\User\UserInterface;
2121

2222
class AuthenticationTrustResolverTest extends TestCase
2323
{

Tests/Validator/Constraints/UserPasswordTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function provideServiceValidatedConstraints(): iterable
3737
{
3838
yield 'Doctrine style' => [new UserPassword(['service' => 'my_service'])];
3939

40-
yield 'named arguments' => [new UserPassword(service: "my_service")];
40+
yield 'named arguments' => [new UserPassword(service: 'my_service')];
4141

4242
$metadata = new ClassMetadata(UserPasswordDummy::class);
4343
self::assertTrue((new AnnotationLoader())->loadClassMetadata($metadata));

Tests/Validator/Constraints/UserPasswordValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function provideConstraints(): iterable
9494
{
9595
yield 'Doctrine style' => [new UserPassword(['message' => 'myMessage'])];
9696

97-
yield 'named arguments' => [new UserPassword(message: "myMessage")];
97+
yield 'named arguments' => [new UserPassword(message: 'myMessage')];
9898
}
9999

100100
/**

0 commit comments

Comments
 (0)