Skip to content

Commit 6bc6de3

Browse files
committed
Merge branch '2.5' into 2.6
* 2.5: remove short array syntax fix session restart on PHP 5.3
2 parents 7707b84 + f04f370 commit 6bc6de3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/DependencyInjection/SecurityExtensionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ public function testFirewallWithInvalidUserProvider()
8080

8181
$container->loadFromExtension('security', array(
8282
'providers' => array(
83-
'my_foo' => array('foo' => []),
83+
'my_foo' => array('foo' => array()),
8484
),
8585

8686
'firewalls' => array(
8787
'some_firewall' => array(
8888
'pattern' => '/.*',
89-
'http_basic' => [],
89+
'http_basic' => array(),
9090
),
9191
),
9292
));

0 commit comments

Comments
 (0)