diff options
author | sarah khalil <mkhalil.sarah@gmail.com> | 2015-03-11 19:39:59 +0100 |
---|---|---|
committer | sarah khalil <mkhalil.sarah@gmail.com> | 2015-03-13 10:59:53 +0100 |
commit | 7ce4fb1b7505e247eaff30acf3029a768c6f4844 (patch) | |
tree | 0c0bca65028c1b062daf488c0aaba1dc10339cc7 /Http | |
parent | 407bf90c0e3328b4895661e5b3066d0ca3815ce2 (diff) | |
download | symfony-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')
-rw-r--r-- | Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php | 4 |
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; |