summaryrefslogtreecommitdiffstats
path: root/Authentication/Provider/AnonymousAuthenticationProvider.php
diff options
context:
space:
mode:
Diffstat (limited to 'Authentication/Provider/AnonymousAuthenticationProvider.php')
-rw-r--r--Authentication/Provider/AnonymousAuthenticationProvider.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/Authentication/Provider/AnonymousAuthenticationProvider.php b/Authentication/Provider/AnonymousAuthenticationProvider.php
index 091bca1..92f668d 100644
--- a/Authentication/Provider/AnonymousAuthenticationProvider.php
+++ b/Authentication/Provider/AnonymousAuthenticationProvider.php
@@ -1,20 +1,20 @@
<?php
-namespace Symfony\Component\Security\Authentication\Provider;
-
-use Symfony\Component\Security\Authentication\Token\TokenInterface;
-use Symfony\Component\Security\Exception\BadCredentialsException;
-use Symfony\Component\Security\Authentication\Token\AnonymousToken;
-
/*
- * 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\Provider;
+
+use Symfony\Component\Security\Authentication\Token\TokenInterface;
+use Symfony\Component\Security\Exception\BadCredentialsException;
+use Symfony\Component\Security\Authentication\Token\AnonymousToken;
+
/**
* AnonymousAuthenticationProvider validates AnonymousToken instances.
*