summaryrefslogtreecommitdiffstats
path: root/Http
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2015-03-24 18:00:37 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2015-03-24 18:00:37 +0100
commitfedc844595d0871c5f17169ab82af83085215684 (patch)
tree01db6293f5ad33715cebdbe57262e07dbc6cde88 /Http
parent14ee647257dcabea3d193c1f1f508d85ef6f0948 (diff)
parent551d5b01ee118c2d6e54cf8abb25a28c20568640 (diff)
downloadsymfony-security-fedc844595d0871c5f17169ab82af83085215684.zip
symfony-security-fedc844595d0871c5f17169ab82af83085215684.tar.gz
symfony-security-fedc844595d0871c5f17169ab82af83085215684.tar.bz2
Merge branch '2.3' into 2.6
* 2.3: 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 Conflicts: src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.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.