diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/GuardAuthenticationFactory.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/GuardAuthenticationFactory.php index f490a4827c..0d58c39b05 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/GuardAuthenticationFactory.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/GuardAuthenticationFactory.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Symfony\Bundle\SecurityBundle\DependencyInjection\Security\Factory; use Symfony\Component\Config\Definition\Builder\NodeDefinition; @@ -10,7 +19,7 @@ use Symfony\Component\DependencyInjection\Reference; /** * Configures the "guard" authentication provider key under a firewall. * - * @author Ryan Weaver + * @author Ryan Weaver */ class GuardAuthenticationFactory implements SecurityFactoryInterface { diff --git a/src/Symfony/Component/Security/Guard/AbstractGuardAuthenticator.php b/src/Symfony/Component/Security/Guard/AbstractGuardAuthenticator.php index 95a398bb4f..609d772e19 100644 --- a/src/Symfony/Component/Security/Guard/AbstractGuardAuthenticator.php +++ b/src/Symfony/Component/Security/Guard/AbstractGuardAuthenticator.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Symfony\Component\Security\Guard; use Symfony\Component\Security\Core\User\UserInterface; @@ -8,7 +17,7 @@ use Symfony\Component\Security\Guard\Token\PostAuthenticationGuardToken; /** * An optional base class that creates a PostAuthenticationGuardToken for you. * - * @author Ryan Weaver + * @author Ryan Weaver */ abstract class AbstractGuardAuthenticator implements GuardAuthenticatorInterface { @@ -29,4 +38,4 @@ abstract class AbstractGuardAuthenticator implements GuardAuthenticatorInterface $user->getRoles() ); } -} \ No newline at end of file +} diff --git a/src/Symfony/Component/Security/Guard/Firewall/GuardAuthenticationListener.php b/src/Symfony/Component/Security/Guard/Firewall/GuardAuthenticationListener.php index fc5706d571..38ca0a0665 100644 --- a/src/Symfony/Component/Security/Guard/Firewall/GuardAuthenticationListener.php +++ b/src/Symfony/Component/Security/Guard/Firewall/GuardAuthenticationListener.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Symfony\Component\Security\Guard\Firewall; use Symfony\Component\HttpFoundation\Request; @@ -18,7 +27,7 @@ use Symfony\Component\Security\Http\RememberMe\RememberMeServicesInterface; /** * Authentication listener for the "guard" system. * - * @author Ryan Weaver + * @author Ryan Weaver */ class GuardAuthenticationListener implements ListenerInterface { @@ -177,4 +186,4 @@ class GuardAuthenticationListener implements ListenerInterface $this->rememberMeServices->loginSuccess($request, $response, $token); } -} \ No newline at end of file +} diff --git a/src/Symfony/Component/Security/Guard/GuardAuthenticatorHandler.php b/src/Symfony/Component/Security/Guard/GuardAuthenticatorHandler.php index 465b45a957..c588d688b7 100644 --- a/src/Symfony/Component/Security/Guard/GuardAuthenticatorHandler.php +++ b/src/Symfony/Component/Security/Guard/GuardAuthenticatorHandler.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Symfony\Component\Security\Guard; use Symfony\Component\EventDispatcher\EventDispatcherInterface; @@ -18,7 +27,7 @@ use Symfony\Component\Security\Http\SecurityEvents; * By having the logic here instead of the listener, more of the process * can be called directly (e.g. for manual authentication) or overridden. * - * @author Ryan Weaver + * @author Ryan Weaver */ class GuardAuthenticatorHandler { @@ -122,4 +131,4 @@ class GuardAuthenticatorHandler is_object($response) ? get_class($response) : gettype($response) )); } -} \ No newline at end of file +} diff --git a/src/Symfony/Component/Security/Guard/GuardAuthenticatorInterface.php b/src/Symfony/Component/Security/Guard/GuardAuthenticatorInterface.php index e55f178e9d..2db313cc2b 100644 --- a/src/Symfony/Component/Security/Guard/GuardAuthenticatorInterface.php +++ b/src/Symfony/Component/Security/Guard/GuardAuthenticatorInterface.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Symfony\Component\Security\Guard; use Symfony\Component\HttpFoundation\Request; @@ -18,7 +27,7 @@ use Symfony\Component\Security\Http\EntryPoint\AuthenticationEntryPointInterface * process to give you the power to control most parts of the process from * one location. * - * @author Ryan Weaver + * @author Ryan Weaver */ interface GuardAuthenticatorInterface extends AuthenticationEntryPointInterface { diff --git a/src/Symfony/Component/Security/Guard/Provider/GuardAuthenticationProvider.php b/src/Symfony/Component/Security/Guard/Provider/GuardAuthenticationProvider.php index eb9ef31e43..7610f490cf 100644 --- a/src/Symfony/Component/Security/Guard/Provider/GuardAuthenticationProvider.php +++ b/src/Symfony/Component/Security/Guard/Provider/GuardAuthenticationProvider.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Symfony\Component\Security\Guard\Provider; use Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface; @@ -17,7 +26,7 @@ use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; * Responsible for accepting the PreAuthenticationGuardToken and calling * the correct authenticator to retrieve the authenticated token. * - * @author Ryan Weaver + * @author Ryan Weaver */ class GuardAuthenticationProvider implements AuthenticationProviderInterface { diff --git a/src/Symfony/Component/Security/Guard/Token/GuardTokenInterface.php b/src/Symfony/Component/Security/Guard/Token/GuardTokenInterface.php index 8ad57b3b2a..f0db250dd3 100644 --- a/src/Symfony/Component/Security/Guard/Token/GuardTokenInterface.php +++ b/src/Symfony/Component/Security/Guard/Token/GuardTokenInterface.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Symfony\Component\Security\Guard\Token; /** @@ -9,7 +18,7 @@ namespace Symfony\Component\Security\Guard\Token; * are handled by the guard auth system) must implement this * interface. * - * @author Ryan Weaver + * @author Ryan Weaver */ interface GuardTokenInterface { diff --git a/src/Symfony/Component/Security/Guard/Token/PostAuthenticationGuardToken.php b/src/Symfony/Component/Security/Guard/Token/PostAuthenticationGuardToken.php index 5b7e20e3b7..9657f8a524 100644 --- a/src/Symfony/Component/Security/Guard/Token/PostAuthenticationGuardToken.php +++ b/src/Symfony/Component/Security/Guard/Token/PostAuthenticationGuardToken.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Symfony\Component\Security\Guard\Token; use Symfony\Component\Security\Core\Authentication\Token\AbstractToken; @@ -12,7 +21,7 @@ use Symfony\Component\Security\Core\User\UserInterface; * If you're using Guard authentication, you *must* use a class that implements * GuardTokenInterface as your authenticated token (like this class). * - * @author Ryan Weaver + * @author Ryan Weaver n@gmail.com> */ class PostAuthenticationGuardToken extends AbstractToken implements GuardTokenInterface { diff --git a/src/Symfony/Component/Security/Guard/Token/PreAuthenticationGuardToken.php b/src/Symfony/Component/Security/Guard/Token/PreAuthenticationGuardToken.php index cc52ec2b8a..b694541bde 100644 --- a/src/Symfony/Component/Security/Guard/Token/PreAuthenticationGuardToken.php +++ b/src/Symfony/Component/Security/Guard/Token/PreAuthenticationGuardToken.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Symfony\Component\Security\Guard\Token; use Symfony\Component\Security\Core\Authentication\Token\AbstractToken; @@ -11,7 +20,7 @@ use Symfony\Component\Security\Core\Authentication\Token\AbstractToken; * immediately by the GuardAuthenticationProvider. If authentication is * successful, a different authenticated token is returned * - * @author Ryan Weaver + * @author Ryan Weaver */ class PreAuthenticationGuardToken extends AbstractToken implements GuardTokenInterface {