summaryrefslogtreecommitdiffstats
path: root/Tests/Http
diff options
context:
space:
mode:
authorDariusz Ruminski <dariusz.ruminski@gmail.com>2015-02-18 08:05:44 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2015-03-02 15:15:25 +0100
commit89ef6872e8c64eede0d4e6f7d03f0d654ddf2a42 (patch)
treea8004fee66158e5afae5583a46a85f07fb68cb22 /Tests/Http
parent5d5a4e20a8f5db004e045a5b8137a6d455272ee4 (diff)
downloadsymfony-security-89ef6872e8c64eede0d4e6f7d03f0d654ddf2a42.zip
symfony-security-89ef6872e8c64eede0d4e6f7d03f0d654ddf2a42.tar.gz
symfony-security-89ef6872e8c64eede0d4e6f7d03f0d654ddf2a42.tar.bz2
CS fixes
Diffstat (limited to 'Tests/Http')
-rw-r--r--Tests/Http/Firewall/RememberMeListenerTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/Tests/Http/Firewall/RememberMeListenerTest.php b/Tests/Http/Firewall/RememberMeListenerTest.php
index 3624f11..067cacb 100644
--- a/Tests/Http/Firewall/RememberMeListenerTest.php
+++ b/Tests/Http/Firewall/RememberMeListenerTest.php
@@ -19,7 +19,7 @@ class RememberMeListenerTest extends \PHPUnit_Framework_TestCase
{
public function testOnCoreSecurityDoesNotTryToPopulateNonEmptySecurityContext()
{
- list($listener, $context, $service, ,) = $this->getListener();
+ list($listener, $context, $service) = $this->getListener();
$context
->expects($this->once())
@@ -37,7 +37,7 @@ class RememberMeListenerTest extends \PHPUnit_Framework_TestCase
public function testOnCoreSecurityDoesNothingWhenNoCookieIsSet()
{
- list($listener, $context, $service, ,) = $this->getListener();
+ list($listener, $context, $service) = $this->getListener();
$context
->expects($this->once())
@@ -63,7 +63,7 @@ class RememberMeListenerTest extends \PHPUnit_Framework_TestCase
public function testOnCoreSecurityIgnoresAuthenticationExceptionThrownByAuthenticationManagerImplementation()
{
- list($listener, $context, $service, $manager,) = $this->getListener();
+ list($listener, $context, $service, $manager) = $this->getListener();
$context
->expects($this->once())
@@ -101,7 +101,7 @@ class RememberMeListenerTest extends \PHPUnit_Framework_TestCase
public function testOnCoreSecurity()
{
- list($listener, $context, $service, $manager,) = $this->getListener();
+ list($listener, $context, $service, $manager) = $this->getListener();
$context
->expects($this->once())