diff options
Diffstat (limited to 'Authentication/EntryPoint/AuthenticationEntryPointInterface.php')
-rw-r--r-- | Authentication/EntryPoint/AuthenticationEntryPointInterface.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Authentication/EntryPoint/AuthenticationEntryPointInterface.php b/Authentication/EntryPoint/AuthenticationEntryPointInterface.php index e58f219..004837f 100644 --- a/Authentication/EntryPoint/AuthenticationEntryPointInterface.php +++ b/Authentication/EntryPoint/AuthenticationEntryPointInterface.php @@ -1,19 +1,19 @@ <?php -namespace Symfony\Component\Security\Authentication\EntryPoint; - -use Symfony\Component\Security\Exception\AuthenticationException; -use Symfony\Component\HttpFoundation\Request; - /* - * This file is part of the Symfony framework. + * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien.potencier@symfony-project.com> * - * This source file is subject to the MIT license that is bundled - * with this source code in the file LICENSE. + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ +namespace Symfony\Component\Security\Authentication\EntryPoint; + +use Symfony\Component\Security\Exception\AuthenticationException; +use Symfony\Component\HttpFoundation\Request; + /** * AuthenticationEntryPointInterface is the interface used to start the * authentication scheme. |