diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2011-02-04 19:38:42 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-02-04 19:38:42 +0100 |
commit | d2a36866249540a6e41cdbeb23c99b0a8c0a784e (patch) | |
tree | 703dd9e2cd4440d24980d754c1f2d9c926b42726 /Http | |
parent | 2a76050d8acbf1fbed248a94dce4b2525e9e9635 (diff) | |
download | symfony-security-d2a36866249540a6e41cdbeb23c99b0a8c0a784e.zip symfony-security-d2a36866249540a6e41cdbeb23c99b0a8c0a784e.tar.gz symfony-security-d2a36866249540a6e41cdbeb23c99b0a8c0a784e.tar.bz2 |
fixed previous commit
Diffstat (limited to 'Http')
-rw-r--r-- | Http/EntryPoint/DigestAuthenticationEntryPoint.php | 2 | ||||
-rw-r--r-- | Http/Firewall/DigestAuthenticationListener.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Http/EntryPoint/DigestAuthenticationEntryPoint.php b/Http/EntryPoint/DigestAuthenticationEntryPoint.php index 71866b4..ecc6178 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\HttpKernel\Security\EntryPoint\NonceExpiredException; +use Symfony\Component\Security\Core\Exception\NonceExpiredException; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpKernel\Log\LoggerInterface; diff --git a/Http/Firewall/DigestAuthenticationListener.php b/Http/Firewall/DigestAuthenticationListener.php index 559f28c..040795a 100644 --- a/Http/Firewall/DigestAuthenticationListener.php +++ b/Http/Firewall/DigestAuthenticationListener.php @@ -21,7 +21,7 @@ use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken; use Symfony\Component\Security\Core\Exception\BadCredentialsException; use Symfony\Component\Security\Core\Exception\AuthenticationServiceException; use Symfony\Component\Security\Core\Exception\UsernameNotFoundException; -use Symfony\Component\HttpKernel\Security\EntryPoint\NonceExpiredException; +use Symfony\Component\Security\Core\Exception\NonceExpiredException; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Security\Core\Exception\AuthenticationException; |