summaryrefslogtreecommitdiffstats
path: root/Http/Tests/Firewall
diff options
context:
space:
mode:
authorGraham Campbell <graham@mineuk.com>2014-12-05 20:11:30 +0000
committerFabien Potencier <fabien.potencier@gmail.com>2014-12-07 19:23:39 +0100
commit42c01236ad91d79608e903005583d4a2d0d3cd7a (patch)
tree8cb18a553a9da7cc284e5c173295d8c1448ae34b /Http/Tests/Firewall
parent7b4c83290a3d948e2ac7e5fc41073db13c32795c (diff)
downloadsymfony-security-42c01236ad91d79608e903005583d4a2d0d3cd7a.zip
symfony-security-42c01236ad91d79608e903005583d4a2d0d3cd7a.tar.gz
symfony-security-42c01236ad91d79608e903005583d4a2d0d3cd7a.tar.bz2
[2.6] CS Fixes And Removed An Unused Import
Diffstat (limited to 'Http/Tests/Firewall')
-rw-r--r--Http/Tests/Firewall/RememberMeListenerTest.php2
-rw-r--r--Http/Tests/Firewall/RemoteUserAuthenticationListenerTest.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/Http/Tests/Firewall/RememberMeListenerTest.php b/Http/Tests/Firewall/RememberMeListenerTest.php
index 4a33ed1..edc27a1 100644
--- a/Http/Tests/Firewall/RememberMeListenerTest.php
+++ b/Http/Tests/Firewall/RememberMeListenerTest.php
@@ -183,7 +183,7 @@ class RememberMeListenerTest extends \PHPUnit_Framework_TestCase
public function testOnCoreSecurityInteractiveLoginEventIsDispatchedIfDispatcherIsPresent()
{
- list($listener, $context, $service, $manager,, $dispatcher) = $this->getListener(true);
+ list($listener, $context, $service, $manager, , $dispatcher) = $this->getListener(true);
$context
->expects($this->once())
diff --git a/Http/Tests/Firewall/RemoteUserAuthenticationListenerTest.php b/Http/Tests/Firewall/RemoteUserAuthenticationListenerTest.php
index 2bc1ad6..6e6b979 100644
--- a/Http/Tests/Firewall/RemoteUserAuthenticationListenerTest.php
+++ b/Http/Tests/Firewall/RemoteUserAuthenticationListenerTest.php
@@ -19,7 +19,7 @@ class RemoteUserAuthenticationListenerTest extends \PHPUnit_Framework_TestCase
public function testGetPreAuthenticatedData()
{
$serverVars = array(
- 'REMOTE_USER' => 'TheUser'
+ 'REMOTE_USER' => 'TheUser',
);
$request = new Request(array(), array(), array(), array(), array(), $serverVars);
@@ -69,7 +69,7 @@ class RemoteUserAuthenticationListenerTest extends \PHPUnit_Framework_TestCase
$userCredentials = array('TheUser', null);
$request = new Request(array(), array(), array(), array(), array(), array(
- 'TheUserKey' => 'TheUser'
+ 'TheUserKey' => 'TheUser',
));
$context = $this->getMock('Symfony\Component\Security\Core\SecurityContextInterface');