diff options
author | sarah khalil <mkhalil.sarah@gmail.com> | 2015-03-11 19:44:00 +0100 |
---|---|---|
committer | sarah khalil <mkhalil.sarah@gmail.com> | 2015-03-13 10:50:03 +0100 |
commit | 13610c5f6e929d99c9b7f518f545721321b0227a (patch) | |
tree | af88bea730bbe716728d742a09ace8c97343c869 /Http/Tests/Authentication | |
parent | 79b93b26ebf03b69df71bdeb51ec78811dcda90a (diff) | |
download | symfony-security-13610c5f6e929d99c9b7f518f545721321b0227a.zip symfony-security-13610c5f6e929d99c9b7f518f545721321b0227a.tar.gz symfony-security-13610c5f6e929d99c9b7f518f545721321b0227a.tar.bz2 |
Changed visibility of setUp() and tearDown to protected
Diffstat (limited to 'Http/Tests/Authentication')
-rw-r--r-- | Http/Tests/Authentication/SimpleAuthenticationHandlerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Tests/Authentication/SimpleAuthenticationHandlerTest.php b/Http/Tests/Authentication/SimpleAuthenticationHandlerTest.php index 97167c9..6e79b07 100644 --- a/Http/Tests/Authentication/SimpleAuthenticationHandlerTest.php +++ b/Http/Tests/Authentication/SimpleAuthenticationHandlerTest.php @@ -31,7 +31,7 @@ class SimpleAuthenticationHandlerTest extends \PHPUnit_Framework_TestCase private $response; - public function setUp() + protected function setUp() { $this->successHandler = $this->getMock('Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface'); $this->failureHandler = $this->getMock('Symfony\Component\Security\Http\Authentication\AuthenticationFailureHandlerInterface'); |