diff options
author | Lukas Kahwe Smith <smith@pooteeweet.org> | 2011-02-04 19:10:13 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-02-04 19:30:28 +0100 |
commit | 2a76050d8acbf1fbed248a94dce4b2525e9e9635 (patch) | |
tree | 69af4d9fb84f94f2fff0ab04e0e76aa9fcb9eb7b /Http/EntryPoint | |
parent | 711ab84f4d4d4d1c313a25898a18c7284f2e33ee (diff) | |
download | symfony-security-2a76050d8acbf1fbed248a94dce4b2525e9e9635.zip symfony-security-2a76050d8acbf1fbed248a94dce4b2525e9e9635.tar.gz symfony-security-2a76050d8acbf1fbed248a94dce4b2525e9e9635.tar.bz2 |
some fixes by just "blindly" trying to make phpStorm code analysis happier
Diffstat (limited to 'Http/EntryPoint')
-rw-r--r-- | Http/EntryPoint/DigestAuthenticationEntryPoint.php | 2 | ||||
-rw-r--r-- | Http/EntryPoint/FormAuthenticationEntryPoint.php | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Http/EntryPoint/DigestAuthenticationEntryPoint.php b/Http/EntryPoint/DigestAuthenticationEntryPoint.php index ecc6178..71866b4 100644 --- a/Http/EntryPoint/DigestAuthenticationEntryPoint.php +++ b/Http/EntryPoint/DigestAuthenticationEntryPoint.php @@ -14,7 +14,7 @@ namespace Symfony\Component\Security\Http\EntryPoint; use Symfony\Component\EventDispatcher\EventInterface; use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\Security\Http\EntryPoint\AuthenticationEntryPointInterface; -use Symfony\Component\Security\Core\Exception\NonceExpiredException; +use Symfony\Component\HttpKernel\Security\EntryPoint\NonceExpiredException; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpKernel\Log\LoggerInterface; diff --git a/Http/EntryPoint/FormAuthenticationEntryPoint.php b/Http/EntryPoint/FormAuthenticationEntryPoint.php index 7a18b2f..7bf4881 100644 --- a/Http/EntryPoint/FormAuthenticationEntryPoint.php +++ b/Http/EntryPoint/FormAuthenticationEntryPoint.php @@ -17,6 +17,7 @@ use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\Security\Http\EntryPoint\AuthenticationEntryPointInterface; use Symfony\Component\Security\Core\SecurityContext; +use Symfony\Component\HttpKernel\HttpKernelInterface; /** * FormAuthenticationEntryPoint starts an authentication via a login form. |