Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dc68936

Browse files
committed
Mark new core authenticators as experimental
1 parent eab97a3 commit dc68936

12 files changed

+36
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
/**
1717
* @author Wouter de Jong <[email protected]>
18+
*
19+
* @experimental in 5.1
1820
*/
1921
interface EntrypointFactoryInterface
2022
{

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
/**
1717
* @author Wouter de Jong <[email protected]>
18+
*
19+
* @experimental in 5.1
1820
*/
1921
interface GuardFactoryInterface
2022
{

src/Symfony/Bundle/SecurityBundle/EventListener/LazyGuardManagerListener.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
/**
2222
* @author Wouter de Jong <[email protected]>
23+
*
24+
* @experimental in 5.1
2325
*/
2426
class LazyGuardManagerListener extends GuardManagerListener
2527
{

src/Symfony/Component/Security/Core/Authentication/Authenticator/AbstractAuthenticator.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
* An optional base class that creates the necessary tokens for you.
2020
*
2121
* @author Ryan Weaver <[email protected]>
22+
*
23+
* @experimental in 5.1
2224
*/
2325
abstract class AbstractAuthenticator implements AuthenticatorInterface
2426
{

src/Symfony/Component/Security/Core/Authentication/Authenticator/AbstractFormLoginAuthenticator.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
* A base class to make form login authentication easier!
2323
*
2424
* @author Ryan Weaver <[email protected]>
25+
*
26+
* @experimental in 5.1
2527
*/
2628
abstract class AbstractFormLoginAuthenticator extends AbstractAuthenticator implements AuthenticationEntryPointInterface
2729
{

src/Symfony/Component/Security/Core/Authentication/Authenticator/AnonymousAuthenticator.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222

2323
/**
2424
* @author Wouter de Jong <[email protected]>
25+
* @author Fabien Potencier <[email protected]>
26+
*
27+
* @final
28+
* @experimental in 5.1
2529
*/
2630
class AnonymousAuthenticator implements AuthenticatorInterface
2731
{

src/Symfony/Component/Security/Core/Authentication/Authenticator/AuthenticatorInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
* @author Ryan Weaver <[email protected]>
2424
* @author Amaury Leroux de Lens <[email protected]>
2525
* @author Wouter de Jong <[email protected]>
26+
*
27+
* @experimental in 5.1
2628
*/
2729
interface AuthenticatorInterface
2830
{

src/Symfony/Component/Security/Core/Authentication/Authenticator/FormLoginAuthenticator.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@
2929

3030
/**
3131
* @author Wouter de Jong <[email protected]>
32+
* @author Fabien Potencier <[email protected]>
33+
*
34+
* @final
35+
* @experimental in 5.1
3236
*/
3337
class FormLoginAuthenticator extends AbstractFormLoginAuthenticator
3438
{

src/Symfony/Component/Security/Core/Authentication/Authenticator/HttpBasicAuthenticator.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323

2424
/**
2525
* @author Wouter de Jong <[email protected]>
26+
* @author Fabien Potencier <[email protected]>
27+
*
28+
* @final
29+
* @experimental in 5.1
2630
*/
2731
class HttpBasicAuthenticator implements AuthenticatorInterface, AuthenticationEntryPointInterface
2832
{

src/Symfony/Component/Security/Core/Authentication/Authenticator/UsernamePasswordTrait.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
* @author Wouter de Jong <[email protected]>
2222
*
2323
* @property EncoderFactoryInterface $encoderFactory
24+
*
25+
* @experimental in 5.1
2426
*/
2527
trait UsernamePasswordTrait
2628
{

src/Symfony/Component/Security/Core/Authentication/GuardAuthenticationManager.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@
2525
use Symfony\Component\Security\Guard\Token\PreAuthenticationGuardToken;
2626
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
2727

28+
/**
29+
* @author Wouter de Jong <[email protected]>
30+
* @author Ryan Weaver <[email protected]>
31+
*
32+
* @experimental in 5.1
33+
*/
2834
class GuardAuthenticationManager implements AuthenticationManagerInterface
2935
{
3036
use GuardAuthenticationProviderTrait;

src/Symfony/Component/Security/Http/Firewall/GuardManagerListener.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020

2121
/**
2222
* @author Wouter de Jong <[email protected]>
23+
* @author Ryan Weaver <[email protected]>
24+
* @author Amaury Leroux de Lens <[email protected]>
25+
*
26+
* @experimental in 5.1
2327
*/
2428
class GuardManagerListener
2529
{

0 commit comments

Comments
 (0)