Skip to content

Commit e13ea5f

Browse files
CS fix
1 parent f4ea109 commit e13ea5f

9 files changed

+25
-0
lines changed

Tests/DependencyInjection/SecurityExtensionTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,7 @@ public function testFirewallWithNoUserProviderTriggerDeprecation()
403403

404404
/**
405405
* @dataProvider sessionConfigurationProvider
406+
*
406407
* @group legacy
407408
*/
408409
public function testRememberMeCookieInheritFrameworkSessionCookie($config, $samesite, $secure)
@@ -634,6 +635,7 @@ public function testValidAccessControlWithEmptyRow()
634635

635636
/**
636637
* @group legacy
638+
*
637639
* @dataProvider provideEntryPointFirewalls
638640
*/
639641
public function testAuthenticatorManagerEnabledEntryPoint(array $firewall, $entryPointId)

Tests/Functional/CsrfFormLoginTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ public function testFormLoginRedirectsToProtectedResourceAfterLogin($options)
124124

125125
/**
126126
* @group legacy
127+
*
127128
* @dataProvider provideLegacyClientOptions
128129
*/
129130
public function testLegacyFormLoginAndLogoutWithCsrfTokens($options)
@@ -154,6 +155,7 @@ public function testLegacyFormLoginAndLogoutWithCsrfTokens($options)
154155

155156
/**
156157
* @group legacy
158+
*
157159
* @dataProvider provideLegacyClientOptions
158160
*/
159161
public function testLegacyFormLoginWithInvalidCsrfToken($options)
@@ -172,6 +174,7 @@ public function testLegacyFormLoginWithInvalidCsrfToken($options)
172174

173175
/**
174176
* @group legacy
177+
*
175178
* @dataProvider provideLegacyClientOptions
176179
*/
177180
public function testFormLegacyLoginWithCustomTargetPath($options)
@@ -193,6 +196,7 @@ public function testFormLegacyLoginWithCustomTargetPath($options)
193196

194197
/**
195198
* @group legacy
199+
*
196200
* @dataProvider provideLegacyClientOptions
197201
*/
198202
public function testLegacyFormLoginRedirectsToProtectedResourceAfterLogin($options)

Tests/Functional/FormLoginTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ public function testLoginThrottling()
155155

156156
/**
157157
* @dataProvider provideLegacyClientOptions
158+
*
158159
* @group legacy
159160
*/
160161
public function testLegacyFormLogin(array $options)
@@ -175,6 +176,7 @@ public function testLegacyFormLogin(array $options)
175176

176177
/**
177178
* @dataProvider provideLegacyClientOptions
179+
*
178180
* @group legacy
179181
*/
180182
public function testLegacyFormLogout(array $options)
@@ -209,6 +211,7 @@ public function testLegacyFormLogout(array $options)
209211

210212
/**
211213
* @dataProvider provideLegacyClientOptions
214+
*
212215
* @group legacy
213216
*/
214217
public function testLegacyFormLoginWithCustomTargetPath(array $options)
@@ -230,6 +233,7 @@ public function testLegacyFormLoginWithCustomTargetPath(array $options)
230233

231234
/**
232235
* @dataProvider provideLegacyClientOptions
236+
*
233237
* @group legacy
234238
*/
235239
public function testLegacyFormLoginRedirectsToProtectedResourceAfterLogin(array $options)

Tests/Functional/LocalizedRoutesAsPathTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public function testLoginLogoutProcedure($locale, array $options)
3636

3737
/**
3838
* @group issue-32995
39+
*
3940
* @dataProvider getLocalesAndClientConfig
4041
*/
4142
public function testLoginFailureWithLocalizedFailurePath($locale, array $options)
@@ -75,6 +76,7 @@ public function testAccessRestrictedResourceWithForward($locale, array $options)
7576

7677
/**
7778
* @group legacy
79+
*
7880
* @dataProvider getLegacyLocalesAndClientConfig
7981
*/
8082
public function testLegacyLoginLogoutProcedure($locale, array $options)
@@ -98,6 +100,7 @@ public function testLegacyLoginLogoutProcedure($locale, array $options)
98100
/**
99101
* @group issue-32995
100102
* @group legacy
103+
*
101104
* @dataProvider getLegacyLocalesAndClientConfig
102105
*/
103106
public function testLegacyLoginFailureWithLocalizedFailurePath($locale, array $options)
@@ -115,6 +118,7 @@ public function testLegacyLoginFailureWithLocalizedFailurePath($locale, array $o
115118

116119
/**
117120
* @group legacy
121+
*
118122
* @dataProvider getLegacyLocalesAndClientConfig
119123
*/
120124
public function testLegacyAccessRestrictedResource($locale, array $options)
@@ -127,6 +131,7 @@ public function testLegacyAccessRestrictedResource($locale, array $options)
127131

128132
/**
129133
* @group legacy
134+
*
130135
* @dataProvider getLegacyLocalesAndClientConfig
131136
*/
132137
public function testLegacyAccessRestrictedResourceWithForward($locale, array $options)

Tests/Functional/RememberMeCookieTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public function testSessionRememberMeSecureCookieFlagAuto($https, $expectedSecur
3333

3434
/**
3535
* @dataProvider getSessionRememberMeSecureCookieFlagAutoHttpsMap
36+
*
3637
* @group legacy
3738
*/
3839
public function testLegacySessionRememberMeSecureCookieFlagAuto($https, $expectedSecureFlag)

Tests/Functional/RememberMeTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ public function testSessionLessRememberMeLogout()
9595

9696
/**
9797
* @dataProvider provideLegacyConfigs
98+
*
9899
* @group legacy
99100
*/
100101
public function testLegacyRememberMe(array $options)

Tests/Functional/SecurityRoutingIntegrationTest.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ public function testPublicHomepage()
141141

142142
/**
143143
* @dataProvider provideLegacyClientOptions
144+
*
144145
* @group legacy
145146
*/
146147
public function testLegacyRoutingErrorIsNotExposedForProtectedResourceWhenAnonymous(array $options)
@@ -153,6 +154,7 @@ public function testLegacyRoutingErrorIsNotExposedForProtectedResourceWhenAnonym
153154

154155
/**
155156
* @dataProvider provideLegacyClientOptions
157+
*
156158
* @group legacy
157159
*/
158160
public function testLegacyRoutingErrorIsExposedWhenNotProtected(array $options)
@@ -165,6 +167,7 @@ public function testLegacyRoutingErrorIsExposedWhenNotProtected(array $options)
165167

166168
/**
167169
* @dataProvider provideLegacyClientOptions
170+
*
168171
* @group legacy
169172
*/
170173
public function testLegacyRoutingErrorIsNotExposedForProtectedResourceWhenLoggedInWithInsufficientRights(array $options)
@@ -183,6 +186,7 @@ public function testLegacyRoutingErrorIsNotExposedForProtectedResourceWhenLogged
183186

184187
/**
185188
* @group legacy
189+
*
186190
* @dataProvider provideLegacyClientOptions
187191
*/
188192
public function testLegacySecurityConfigurationForSingleIPAddress(array $options)
@@ -199,6 +203,7 @@ public function testLegacySecurityConfigurationForSingleIPAddress(array $options
199203

200204
/**
201205
* @group legacy
206+
*
202207
* @dataProvider provideLegacyClientOptions
203208
*/
204209
public function testLegacySecurityConfigurationForMultipleIPAddresses(array $options)
@@ -229,6 +234,7 @@ public function testLegacySecurityConfigurationForMultipleIPAddresses(array $opt
229234

230235
/**
231236
* @group legacy
237+
*
232238
* @dataProvider provideLegacyConfigs
233239
*/
234240
public function testLegacySecurityConfigurationForExpression(array $options)

Tests/Functional/SecurityTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ public function testUserWillBeMarkedAsChangedIfRolesHasChanged(UserInterface $us
6666

6767
/**
6868
* @dataProvider userWillBeMarkedAsChangedIfRolesHasChangedProvider
69+
*
6970
* @group legacy
7071
*/
7172
public function testLegacyUserWillBeMarkedAsChangedIfRolesHasChanged(UserInterface $userWithAdminRole, UserInterface $userWithoutAdminRole)

Tests/Functional/UserPasswordEncoderCommandTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* Tests UserPasswordEncoderCommand.
2626
*
2727
* @author Sarah Khalil <[email protected]>
28+
*
2829
* @group legacy
2930
*/
3031
class UserPasswordEncoderCommandTest extends AbstractWebTestCase

0 commit comments

Comments
 (0)