diff options
author | Ryan Weaver <ryan@thatsquality.com> | 2015-09-20 19:37:42 -0400 |
---|---|---|
committer | Ryan Weaver <ryan@thatsquality.com> | 2015-09-20 19:37:42 -0400 |
commit | 5dc6b296d8925d87588865e759fcde67144098a6 (patch) | |
tree | d555ff1494f96d36413e3dc6796059c78313c525 | |
parent | 6adfc70d635d4731f68d8e1cef145395e5d3d662 (diff) | |
download | symfony-security-5dc6b296d8925d87588865e759fcde67144098a6.zip symfony-security-5dc6b296d8925d87588865e759fcde67144098a6.tar.gz symfony-security-5dc6b296d8925d87588865e759fcde67144098a6.tar.bz2 |
meaningless author and license changes
-rw-r--r-- | Guard/AbstractGuardAuthenticator.php | 13 | ||||
-rw-r--r-- | Guard/Firewall/GuardAuthenticationListener.php | 13 | ||||
-rw-r--r-- | Guard/GuardAuthenticatorHandler.php | 13 | ||||
-rw-r--r-- | Guard/GuardAuthenticatorInterface.php | 11 | ||||
-rw-r--r-- | Guard/Provider/GuardAuthenticationProvider.php | 11 | ||||
-rw-r--r-- | Guard/Token/GuardTokenInterface.php | 11 | ||||
-rw-r--r-- | Guard/Token/PostAuthenticationGuardToken.php | 11 | ||||
-rw-r--r-- | Guard/Token/PreAuthenticationGuardToken.php | 11 |
8 files changed, 83 insertions, 11 deletions
diff --git a/Guard/AbstractGuardAuthenticator.php b/Guard/AbstractGuardAuthenticator.php index 95a398b..609d772 100644 --- a/Guard/AbstractGuardAuthenticator.php +++ b/Guard/AbstractGuardAuthenticator.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * 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 <weaverryan@gmail.com> + * @author Ryan Weaver <ryan@knpuniversity.com> */ 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/Guard/Firewall/GuardAuthenticationListener.php b/Guard/Firewall/GuardAuthenticationListener.php index fc5706d..38ca0a0 100644 --- a/Guard/Firewall/GuardAuthenticationListener.php +++ b/Guard/Firewall/GuardAuthenticationListener.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * 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 <weaverryan@gmail.com> + * @author Ryan Weaver <ryan@knpuniversity.com> */ 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/Guard/GuardAuthenticatorHandler.php b/Guard/GuardAuthenticatorHandler.php index 465b45a..c588d68 100644 --- a/Guard/GuardAuthenticatorHandler.php +++ b/Guard/GuardAuthenticatorHandler.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * 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 <weaverryan@gmail.com> + * @author Ryan Weaver <ryan@knpuniversity.com> */ 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/Guard/GuardAuthenticatorInterface.php b/Guard/GuardAuthenticatorInterface.php index e55f178..2db313c 100644 --- a/Guard/GuardAuthenticatorInterface.php +++ b/Guard/GuardAuthenticatorInterface.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * 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 <weaverryan@gmail.com> + * @author Ryan Weaver <ryan@knpuniversity.com> */ interface GuardAuthenticatorInterface extends AuthenticationEntryPointInterface { diff --git a/Guard/Provider/GuardAuthenticationProvider.php b/Guard/Provider/GuardAuthenticationProvider.php index eb9ef31..7610f49 100644 --- a/Guard/Provider/GuardAuthenticationProvider.php +++ b/Guard/Provider/GuardAuthenticationProvider.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * 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 <weaverryan@gmail.com> + * @author Ryan Weaver <ryan@knpuniversity.com> */ class GuardAuthenticationProvider implements AuthenticationProviderInterface { diff --git a/Guard/Token/GuardTokenInterface.php b/Guard/Token/GuardTokenInterface.php index 8ad57b3..f0db250 100644 --- a/Guard/Token/GuardTokenInterface.php +++ b/Guard/Token/GuardTokenInterface.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * 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 <weaverryan@gmail.com> + * @author Ryan Weaver <ryan@knpuniversity.com> */ interface GuardTokenInterface { diff --git a/Guard/Token/PostAuthenticationGuardToken.php b/Guard/Token/PostAuthenticationGuardToken.php index 5b7e20e..9657f8a 100644 --- a/Guard/Token/PostAuthenticationGuardToken.php +++ b/Guard/Token/PostAuthenticationGuardToken.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * 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 <weaverryan@gmail.com> + * @author Ryan Weaver <ryan@knpuniversity.com>n@gmail.com> */ class PostAuthenticationGuardToken extends AbstractToken implements GuardTokenInterface { diff --git a/Guard/Token/PreAuthenticationGuardToken.php b/Guard/Token/PreAuthenticationGuardToken.php index cc52ec2..b694541 100644 --- a/Guard/Token/PreAuthenticationGuardToken.php +++ b/Guard/Token/PreAuthenticationGuardToken.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * 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 <weaverryan@gmail.com> + * @author Ryan Weaver <ryan@knpuniversity.com> */ class PreAuthenticationGuardToken extends AbstractToken implements GuardTokenInterface { |