We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40ed0d2 commit ce404d4Copy full SHA for ce404d4
Tests/Functional/SecurityRoutingIntegrationTest.php
@@ -91,12 +91,14 @@ public function testSecurityConfigurationForMultipleIPAddresses($config)
91
$this->assertRestricted($barredClient, '/secured-by-two-ips');
92
}
93
94
- private function assertAllowed($client, $path) {
+ private function assertAllowed($client, $path)
95
+ {
96
$client->request('GET', $path);
97
$this->assertEquals(404, $client->getResponse()->getStatusCode());
98
99
- private function assertRestricted($client, $path) {
100
+ private function assertRestricted($client, $path)
101
102
103
$this->assertEquals(302, $client->getResponse()->getStatusCode());
104
0 commit comments