Skip to content

Commit 944f4d1

Browse files
committed
fabbot applied
1 parent 15e467d commit 944f4d1

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/Symfony/Component/Security/Http/Tests/EventListener/CheckConstraintBadgeListenerTest.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ protected function setUp(): void
4343

4444
/**
4545
* @dataProvider providePassportWithConstraintBadge
46+
*
4647
* @param Constraint[] $constraints
4748
* @param string[] $violationMessages
4849
*/
@@ -84,24 +85,25 @@ public function providePassportWithConstraintBadge()
8485
new NotBlank(),
8586
new NoSuspiciousCharacters([
8687
'checks' => NoSuspiciousCharacters::CHECK_MIXED_NUMBERS,
87-
])
88+
]),
8889
],
8990
[
90-
'Mixing numbers from different scripts is not allowed.'
91+
'Mixing numbers from different scripts is not allowed.',
9192
],
9293
];
9394
yield [
9495
'weak password',
9596
[
9697
new NotBlank(),
9798
new Length(['min' => 16]),
98-
new PasswordStrength(['minScore' => 4])
99+
new PasswordStrength(['minScore' => 4]),
99100
],
100101
[
101102
'This value is too short. It should have 16 characters or more.',
102-
'The password strength is too low. Please use a stronger password.'
103+
'The password strength is too low. Please use a stronger password.',
103104
],
104105
];
106+
105107
return;
106108
}
107109

0 commit comments

Comments
 (0)