diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-01 08:29:55 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-01 08:29:55 +0200 |
commit | e07dcacff6d021606bdae6f455cd2fe6a5959a72 (patch) | |
tree | f9baa97bf0a75f98409c523fd7466068e90376d0 | |
parent | ae6bc2818c335a0c32d93dca98f4f94a1c3fb92e (diff) | |
parent | c2d213d3f64a1c7cfaa226626687cce57cb64ba8 (diff) | |
download | symfony-security-e07dcacff6d021606bdae6f455cd2fe6a5959a72.zip symfony-security-e07dcacff6d021606bdae6f455cd2fe6a5959a72.tar.gz symfony-security-e07dcacff6d021606bdae6f455cd2fe6a5959a72.tar.bz2 |
Merge branch '2.8'
* 2.8:
[Security] made tests work for 2.8 and 3.0
-rw-r--r-- | Http/Tests/Authentication/DefaultAuthenticationFailureHandlerTest.php | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/Http/Tests/Authentication/DefaultAuthenticationFailureHandlerTest.php b/Http/Tests/Authentication/DefaultAuthenticationFailureHandlerTest.php index adf3e83..8f854c8 100644 --- a/Http/Tests/Authentication/DefaultAuthenticationFailureHandlerTest.php +++ b/Http/Tests/Authentication/DefaultAuthenticationFailureHandlerTest.php @@ -17,17 +17,12 @@ use Symfony\Component\HttpKernel\HttpKernelInterface; class DefaultAuthenticationFailureHandlerTest extends \PHPUnit_Framework_TestCase { - private $httpKernel = null; - - private $httpUtils = null; - - private $logger = null; - - private $request = null; - - private $session = null; - - private $exception = null; + private $httpKernel; + private $httpUtils; + private $logger; + private $request; + private $session; + private $exception; protected function setUp() { |