diff options
author | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-03-13 10:55:11 +0100 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-03-13 10:55:11 +0100 |
commit | 407bf90c0e3328b4895661e5b3066d0ca3815ce2 (patch) | |
tree | a451a473e9b460fca4ca246dd44e11b4547c2dfd /Http/Tests/Authentication | |
parent | 2f3ae1d8ad62ced4219922e99a49057d6654c407 (diff) | |
parent | 13610c5f6e929d99c9b7f518f545721321b0227a (diff) | |
download | symfony-security-407bf90c0e3328b4895661e5b3066d0ca3815ce2.zip symfony-security-407bf90c0e3328b4895661e5b3066d0ca3815ce2.tar.gz symfony-security-407bf90c0e3328b4895661e5b3066d0ca3815ce2.tar.bz2 |
Merge branch '2.6' into 2.7
* 2.6:
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'); |