diff options
-rw-r--r-- | Acl/Domain/Acl.php | 1 | ||||
-rw-r--r-- | Http/RememberMe/RememberMeServicesInterface.php | 11 |
2 files changed, 7 insertions, 5 deletions
diff --git a/Acl/Domain/Acl.php b/Acl/Domain/Acl.php index 328f754..5649719 100644 --- a/Acl/Domain/Acl.php +++ b/Acl/Domain/Acl.php @@ -1,4 +1,5 @@ <?php + /* * This file is part of the Symfony package. * 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. |