Skip to content

Commit 293c8a1

Browse files
committed
meaningless author and license changes
1 parent 81432f9 commit 293c8a1

File tree

9 files changed

+93
-12
lines changed

9 files changed

+93
-12
lines changed

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/GuardAuthenticationFactory.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\Bundle\SecurityBundle\DependencyInjection\Security\Factory;
413

514
use Symfony\Component\Config\Definition\Builder\NodeDefinition;
@@ -10,7 +19,7 @@
1019
/**
1120
* Configures the "guard" authentication provider key under a firewall.
1221
*
13-
* @author Ryan Weaver <weaverryan@gmail.com>
22+
* @author Ryan Weaver <ryan@knpuniversity.com>
1423
*/
1524
class GuardAuthenticationFactory implements SecurityFactoryInterface
1625
{

src/Symfony/Component/Security/Guard/AbstractGuardAuthenticator.php

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\Component\Security\Guard;
413

514
use Symfony\Component\Security\Core\User\UserInterface;
@@ -8,7 +17,7 @@
817
/**
918
* An optional base class that creates a PostAuthenticationGuardToken for you.
1019
*
11-
* @author Ryan Weaver <weaverryan@gmail.com>
20+
* @author Ryan Weaver <ryan@knpuniversity.com>
1221
*/
1322
abstract class AbstractGuardAuthenticator implements GuardAuthenticatorInterface
1423
{
@@ -29,4 +38,4 @@ public function createAuthenticatedToken(UserInterface $user, $providerKey)
2938
$user->getRoles()
3039
);
3140
}
32-
}
41+
}

src/Symfony/Component/Security/Guard/Firewall/GuardAuthenticationListener.php

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\Component\Security\Guard\Firewall;
413

514
use Symfony\Component\HttpFoundation\Request;
@@ -18,7 +27,7 @@
1827
/**
1928
* Authentication listener for the "guard" system.
2029
*
21-
* @author Ryan Weaver <weaverryan@gmail.com>
30+
* @author Ryan Weaver <ryan@knpuniversity.com>
2231
*/
2332
class GuardAuthenticationListener implements ListenerInterface
2433
{
@@ -177,4 +186,4 @@ private function triggerRememberMe(GuardAuthenticatorInterface $guardAuthenticat
177186

178187
$this->rememberMeServices->loginSuccess($request, $response, $token);
179188
}
180-
}
189+
}

src/Symfony/Component/Security/Guard/GuardAuthenticatorHandler.php

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\Component\Security\Guard;
413

514
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
@@ -18,7 +27,7 @@
1827
* By having the logic here instead of the listener, more of the process
1928
* can be called directly (e.g. for manual authentication) or overridden.
2029
*
21-
* @author Ryan Weaver <weaverryan@gmail.com>
30+
* @author Ryan Weaver <ryan@knpuniversity.com>
2231
*/
2332
class GuardAuthenticatorHandler
2433
{
@@ -122,4 +131,4 @@ public function handleAuthenticationFailure(AuthenticationException $authenticat
122131
is_object($response) ? get_class($response) : gettype($response)
123132
));
124133
}
125-
}
134+
}

src/Symfony/Component/Security/Guard/GuardAuthenticatorInterface.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\Component\Security\Guard;
413

514
use Symfony\Component\HttpFoundation\Request;
@@ -18,7 +27,7 @@
1827
* process to give you the power to control most parts of the process from
1928
* one location.
2029
*
21-
* @author Ryan Weaver <weaverryan@gmail.com>
30+
* @author Ryan Weaver <ryan@knpuniversity.com>
2231
*/
2332
interface GuardAuthenticatorInterface extends AuthenticationEntryPointInterface
2433
{

src/Symfony/Component/Security/Guard/Provider/GuardAuthenticationProvider.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\Component\Security\Guard\Provider;
413

514
use Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface;
@@ -17,7 +26,7 @@
1726
* Responsible for accepting the PreAuthenticationGuardToken and calling
1827
* the correct authenticator to retrieve the authenticated token.
1928
*
20-
* @author Ryan Weaver <weaverryan@gmail.com>
29+
* @author Ryan Weaver <ryan@knpuniversity.com>
2130
*/
2231
class GuardAuthenticationProvider implements AuthenticationProviderInterface
2332
{

src/Symfony/Component/Security/Guard/Token/GuardTokenInterface.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\Component\Security\Guard\Token;
413

514
/**
@@ -9,7 +18,7 @@
918
* are handled by the guard auth system) must implement this
1019
* interface.
1120
*
12-
* @author Ryan Weaver <weaverryan@gmail.com>
21+
* @author Ryan Weaver <ryan@knpuniversity.com>
1322
*/
1423
interface GuardTokenInterface
1524
{

src/Symfony/Component/Security/Guard/Token/PostAuthenticationGuardToken.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\Component\Security\Guard\Token;
413

514
use Symfony\Component\Security\Core\Authentication\Token\AbstractToken;
@@ -12,7 +21,7 @@
1221
* If you're using Guard authentication, you *must* use a class that implements
1322
* GuardTokenInterface as your authenticated token (like this class).
1423
*
15-
* @author Ryan Weaver <weaverryan@gmail.com>
24+
* @author Ryan Weaver <ryan@knpuniversity.com>n@gmail.com>
1625
*/
1726
class PostAuthenticationGuardToken extends AbstractToken implements GuardTokenInterface
1827
{

src/Symfony/Component/Security/Guard/Token/PreAuthenticationGuardToken.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\Component\Security\Guard\Token;
413

514
use Symfony\Component\Security\Core\Authentication\Token\AbstractToken;
@@ -11,7 +20,7 @@
1120
* immediately by the GuardAuthenticationProvider. If authentication is
1221
* successful, a different authenticated token is returned
1322
*
14-
* @author Ryan Weaver <weaverryan@gmail.com>
23+
* @author Ryan Weaver <ryan@knpuniversity.com>
1524
*/
1625
class PreAuthenticationGuardToken extends AbstractToken implements GuardTokenInterface
1726
{

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy