diff options
author | Jakub Zalas <jakub@zalas.pl> | 2013-05-26 18:45:33 +0100 |
---|---|---|
committer | Jakub Zalas <jakub@zalas.pl> | 2013-05-26 18:45:33 +0100 |
commit | 8061daa0391e95e34eff345a46e29cf155416cc4 (patch) | |
tree | 26fa0cebaa1dded1167eae79b4763320a23ce1e5 /Tests/Http/Authentication/DefaultAuthenticationFailureHandlerTest.php | |
parent | f70732f96bf3568d2db44e69c298f26cecc160cc (diff) | |
download | symfony-security-8061daa0391e95e34eff345a46e29cf155416cc4.zip symfony-security-8061daa0391e95e34eff345a46e29cf155416cc4.tar.gz symfony-security-8061daa0391e95e34eff345a46e29cf155416cc4.tar.bz2 |
[Security] Fixed the check if an interface exists.
Diffstat (limited to 'Tests/Http/Authentication/DefaultAuthenticationFailureHandlerTest.php')
-rw-r--r-- | Tests/Http/Authentication/DefaultAuthenticationFailureHandlerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Http/Authentication/DefaultAuthenticationFailureHandlerTest.php b/Tests/Http/Authentication/DefaultAuthenticationFailureHandlerTest.php index 485b828..c51893f 100644 --- a/Tests/Http/Authentication/DefaultAuthenticationFailureHandlerTest.php +++ b/Tests/Http/Authentication/DefaultAuthenticationFailureHandlerTest.php @@ -39,7 +39,7 @@ class DefaultAuthenticationFailureHandlerTest extends \PHPUnit_Framework_TestCas $this->markTestSkipped('The "HttpFoundation" component is not available'); } - if (!class_exists('Psr\Log\LoggerInterface')) { + if (!interface_exists('Psr\Log\LoggerInterface')) { $this->markTestSkipped('The "LoggerInterface" is not available'); } |