summaryrefslogtreecommitdiffstats
path: root/Tests/Core/User/InMemoryUserProviderTest.php
diff options
context:
space:
mode:
authorDisquedur <contact@disquedur.tk>2014-10-22 20:27:13 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2014-10-26 08:30:58 +0100
commit2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b (patch)
tree6db7bb361d84015917efef4948aea85500d7b902 /Tests/Core/User/InMemoryUserProviderTest.php
parentcd022841a94f02dd95541fee4cc4a09c4b053d01 (diff)
downloadsymfony-security-2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b.zip
symfony-security-2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b.tar.gz
symfony-security-2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b.tar.bz2
Remove aligned '=>' and '='
Diffstat (limited to 'Tests/Core/User/InMemoryUserProviderTest.php')
-rw-r--r--Tests/Core/User/InMemoryUserProviderTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Core/User/InMemoryUserProviderTest.php b/Tests/Core/User/InMemoryUserProviderTest.php
index 275426c..826e390 100644
--- a/Tests/Core/User/InMemoryUserProviderTest.php
+++ b/Tests/Core/User/InMemoryUserProviderTest.php
@@ -21,8 +21,8 @@ class InMemoryUserProviderTest extends \PHPUnit_Framework_TestCase
$provider = new InMemoryUserProvider(array(
'fabien' => array(
'password' => 'foo',
- 'enabled' => false,
- 'roles' => array('ROLE_USER'),
+ 'enabled' => false,
+ 'roles' => array('ROLE_USER'),
),
));