Skip to content

Commit ce404d4

Browse files
committed
fixed CS
1 parent 40ed0d2 commit ce404d4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Tests/Functional/SecurityRoutingIntegrationTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,14 @@ public function testSecurityConfigurationForMultipleIPAddresses($config)
9191
$this->assertRestricted($barredClient, '/secured-by-two-ips');
9292
}
9393

94-
private function assertAllowed($client, $path) {
94+
private function assertAllowed($client, $path)
95+
{
9596
$client->request('GET', $path);
9697
$this->assertEquals(404, $client->getResponse()->getStatusCode());
9798
}
9899

99-
private function assertRestricted($client, $path) {
100+
private function assertRestricted($client, $path)
101+
{
100102
$client->request('GET', $path);
101103
$this->assertEquals(302, $client->getResponse()->getStatusCode());
102104
}

0 commit comments

Comments
 (0)