diff options
author | Tobias Schultze <webmaster@tubo-world.de> | 2013-10-16 19:35:25 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-10-17 23:29:16 +0200 |
commit | b82e49d699dfba104ee7661e09a5b76bca25ce41 (patch) | |
tree | e01010a1a96309534420846b2e1b9176377e195f /Csrf/Tests | |
parent | 0d5cfc98fe1d250e7b93c370490f060d3f104416 (diff) | |
download | symfony-security-b82e49d699dfba104ee7661e09a5b76bca25ce41.zip symfony-security-b82e49d699dfba104ee7661e09a5b76bca25ce41.tar.gz symfony-security-b82e49d699dfba104ee7661e09a5b76bca25ce41.tar.bz2 |
[Csrf] component fixes
Diffstat (limited to 'Csrf/Tests')
4 files changed, 4 insertions, 4 deletions
diff --git a/Csrf/Tests/CsrfTokenManagerTest.php b/Csrf/Tests/CsrfTokenManagerTest.php index 67c66fb..3112038 100644 --- a/Csrf/Tests/CsrfTokenManagerTest.php +++ b/Csrf/Tests/CsrfTokenManagerTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Form\Tests\Extension\Csrf\CsrfProvider; +namespace Symfony\Component\Security\Csrf\Tests; use Symfony\Component\Security\Csrf\CsrfToken; use Symfony\Component\Security\Csrf\CsrfTokenManager; diff --git a/Csrf/Tests/TokenGenerator/UriSafeTokenGeneratorTest.php b/Csrf/Tests/TokenGenerator/UriSafeTokenGeneratorTest.php index a55056f..ea2f457 100644 --- a/Csrf/Tests/TokenGenerator/UriSafeTokenGeneratorTest.php +++ b/Csrf/Tests/TokenGenerator/UriSafeTokenGeneratorTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Form\Tests\Extension\Csrf\CsrfProvider\TokenGenerator; +namespace Symfony\Component\Security\Csrf\Tests\TokenGenerator; use Symfony\Component\Security\Csrf\TokenGenerator\UriSafeTokenGenerator; diff --git a/Csrf/Tests/TokenStorage/NativeSessionTokenStorageTest.php b/Csrf/Tests/TokenStorage/NativeSessionTokenStorageTest.php index ada04c8..724806c 100644 --- a/Csrf/Tests/TokenStorage/NativeSessionTokenStorageTest.php +++ b/Csrf/Tests/TokenStorage/NativeSessionTokenStorageTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Form\Tests\Extension\Csrf\CsrfProvider; +namespace Symfony\Component\Security\Csrf\Tests\TokenStorage; use Symfony\Component\Security\Csrf\TokenStorage\NativeSessionTokenStorage; diff --git a/Csrf/Tests/TokenStorage/SessionTokenStorageTest.php b/Csrf/Tests/TokenStorage/SessionTokenStorageTest.php index 799b16d..4166c1e 100644 --- a/Csrf/Tests/TokenStorage/SessionTokenStorageTest.php +++ b/Csrf/Tests/TokenStorage/SessionTokenStorageTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Form\Tests\Extension\Csrf\CsrfProvider; +namespace Symfony\Component\Security\Csrf\Tests\TokenStorage; use Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage; |