summaryrefslogtreecommitdiffstats
path: root/Http/Tests
diff options
context:
space:
mode:
authorsarah khalil <mkhalil.sarah@gmail.com>2015-03-11 19:39:59 +0100
committersarah khalil <mkhalil.sarah@gmail.com>2015-03-13 10:59:53 +0100
commit7ce4fb1b7505e247eaff30acf3029a768c6f4844 (patch)
tree0c0bca65028c1b062daf488c0aaba1dc10339cc7 /Http/Tests
parent407bf90c0e3328b4895661e5b3066d0ca3815ce2 (diff)
downloadsymfony-security-7ce4fb1b7505e247eaff30acf3029a768c6f4844.zip
symfony-security-7ce4fb1b7505e247eaff30acf3029a768c6f4844.tar.gz
symfony-security-7ce4fb1b7505e247eaff30acf3029a768c6f4844.tar.bz2
Changed visibility of setUp() and tearDown to protected
Diffstat (limited to 'Http/Tests')
-rw-r--r--Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php b/Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php
index 794841d..0a1286c 100644
--- a/Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php
+++ b/Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php
@@ -92,7 +92,7 @@ class SimplePreAuthenticationListenerTest extends \PHPUnit_Framework_TestCase
$listener->handle($this->event);
}
- public function setUp()
+ protected function setUp()
{
$this->authenticationManager = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager')
->disableOriginalConstructor()
@@ -115,7 +115,7 @@ class SimplePreAuthenticationListenerTest extends \PHPUnit_Framework_TestCase
$this->token = $this->getMock('Symfony\Component\Security\Core\Authentication\Token\TokenInterface');
}
- public function tearDown()
+ protected function tearDown()
{
$this->authenticationManager = null;
$this->dispatcher = null;