summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Kahwe Smith <smith@pooteeweet.org>2011-02-27 19:46:40 +0100
committerLukas Kahwe Smith <smith@pooteeweet.org>2011-02-27 19:46:40 +0100
commit66587478946ed5873aa257614895f89401a93b56 (patch)
treef11d795b7cc9c07ea94cbf2cbdf5217ad6e135f1
parentef075317fa3a922f88fe8d8c857935e2f9f7b684 (diff)
downloadsymfony-security-66587478946ed5873aa257614895f89401a93b56.zip
symfony-security-66587478946ed5873aa257614895f89401a93b56.tar.gz
symfony-security-66587478946ed5873aa257614895f89401a93b56.tar.bz2
corrected NonceExpiredException namespace
-rw-r--r--Core/Exception/NonceExpiredException.php2
-rw-r--r--Http/EntryPoint/DigestAuthenticationEntryPoint.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/Core/Exception/NonceExpiredException.php b/Core/Exception/NonceExpiredException.php
index 5544a63..34bb1dd 100644
--- a/Core/Exception/NonceExpiredException.php
+++ b/Core/Exception/NonceExpiredException.php
@@ -9,7 +9,7 @@
* file that was distributed with this source code.
*/
-namespace Symfony\Component\HttpKernel\Security\EntryPoint;
+namespace Symfony\Component\Security\Core\Exception;
use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\Security\Http\EntryPoint\AuthenticationEntryPointInterface;
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;