Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit293c8a1

Browse files
committed
meaningless author and license changes
1 parent81432f9 commit293c8a1

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
namespaceSymfony\Bundle\SecurityBundle\DependencyInjection\Security\Factory;
413

514
useSymfony\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 GuardAuthenticationFactoryimplements 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
namespaceSymfony\Component\Security\Guard;
413

514
useSymfony\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
abstractclass AbstractGuardAuthenticatorimplements 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
namespaceSymfony\Component\Security\Guard\Firewall;
413

514
useSymfony\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 GuardAuthenticationListenerimplements 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
namespaceSymfony\Component\Security\Guard;
413

514
useSymfony\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
namespaceSymfony\Component\Security\Guard;
413

514
useSymfony\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 GuardAuthenticatorInterfaceextends 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
namespaceSymfony\Component\Security\Guard\Provider;
413

514
useSymfony\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 GuardAuthenticationProviderimplements 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
namespaceSymfony\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
namespaceSymfony\Component\Security\Guard\Token;
413

514
useSymfony\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 PostAuthenticationGuardTokenextends AbstractTokenimplements 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
namespaceSymfony\Component\Security\Guard\Token;
413

514
useSymfony\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 PreAuthenticationGuardTokenextends AbstractTokenimplements GuardTokenInterface
1726
{

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp