diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-03-24 17:57:18 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-03-24 17:57:18 +0100 |
commit | 551d5b01ee118c2d6e54cf8abb25a28c20568640 (patch) | |
tree | 34f2fbe4e9e363147f4a09fceb614a7faf67cbdd /Http/RememberMe | |
parent | 033444f7f7a17b073cd209824b6fa19de2f22905 (diff) | |
parent | 229b3578074e693f0e4a571fba1923c6af894a68 (diff) | |
download | symfony-security-551d5b01ee118c2d6e54cf8abb25a28c20568640.zip symfony-security-551d5b01ee118c2d6e54cf8abb25a28c20568640.tar.gz symfony-security-551d5b01ee118c2d6e54cf8abb25a28c20568640.tar.bz2 |
minor #14038 CS: fix some license headers (keradus)
This PR was merged into the 2.3 branch.
Discussion
----------
CS: fix some license headers
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | ?
| Fixed tickets | N/A
| License | MIT
| Doc PR | N/A
Commits
-------
2b74841 CS: fix some license headers
Diffstat (limited to 'Http/RememberMe')
-rw-r--r-- | Http/RememberMe/RememberMeServicesInterface.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Http/RememberMe/RememberMeServicesInterface.php b/Http/RememberMe/RememberMeServicesInterface.php index 6d91928..7adb827 100644 --- a/Http/RememberMe/RememberMeServicesInterface.php +++ b/Http/RememberMe/RememberMeServicesInterface.php @@ -1,11 +1,5 @@ <?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. * @@ -15,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. |