summaryrefslogtreecommitdiffstats
path: root/Http
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2015-03-24 18:00:58 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2015-03-24 18:00:58 +0100
commit48526dc543e7776f2f4ac3f22d65a27cc3b7d911 (patch)
treead6e0e6e7ac3e0fcb464f5cb24289f6b12b07c0b /Http
parent71583a67fb04833fa05bc754de6a11cddedf1af6 (diff)
parentfedc844595d0871c5f17169ab82af83085215684 (diff)
downloadsymfony-security-48526dc543e7776f2f4ac3f22d65a27cc3b7d911.zip
symfony-security-48526dc543e7776f2f4ac3f22d65a27cc3b7d911.tar.gz
symfony-security-48526dc543e7776f2f4ac3f22d65a27cc3b7d911.tar.bz2
Merge branch '2.6' into 2.7
* 2.6: CS: fix some license headers CS: Ensure there is no code on the same line as the PHP open tag and it is followed by a blankline use visited lookup with reference to gain performance Replace GET parameters when changed [FrameworkBundle][debug:config] added support for dynamic configurations. [WebProfiler] Fix partial search on url in list Conflicts: src/Symfony/Bridge/Propel1/Form/EventListener/TranslationCollectionFormListener.php src/Symfony/Bridge/Propel1/Form/EventListener/TranslationFormListener.php
Diffstat (limited to 'Http')
-rw-r--r--Http/RememberMe/RememberMeServicesInterface.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/Http/RememberMe/RememberMeServicesInterface.php b/Http/RememberMe/RememberMeServicesInterface.php
index a00dcef..7adb827 100644
--- a/Http/RememberMe/RememberMeServicesInterface.php
+++ b/Http/RememberMe/RememberMeServicesInterface.php
@@ -1,9 +1,4 @@
<?php
-namespace Symfony\Component\Security\Http\RememberMe;
-
-use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
-use Symfony\Component\HttpFoundation\Response;
-use Symfony\Component\HttpFoundation\Request;
/*
* This file is part of the Symfony package.
@@ -14,6 +9,12 @@ use Symfony\Component\HttpFoundation\Request;
* file that was distributed with this source code.
*/
+namespace Symfony\Component\Security\Http\RememberMe;
+
+use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
+use Symfony\Component\HttpFoundation\Response;
+use Symfony\Component\HttpFoundation\Request;
+
/**
* Interface that needs to be implemented by classes which provide remember-me
* capabilities.