Skip to content

Commit 873b949

Browse files
committed
Mark new core authenticators as experimental
1 parent 4c06236 commit 873b949

File tree

12 files changed

+36
-0
lines changed

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 <wouter@wouterj.nl>
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 <wouter@wouterj.nl>
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 <wouter@wouterj.nl>
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 <ryan@knpuniversity.com>
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 <ryan@knpuniversity.com>
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 <wouter@wouterj.nl>
25+
* @author Fabien Potencier <fabien@symfony.com>
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 <ryan@knpuniversity.com>
2424
* @author Amaury Leroux de Lens <amaury@lerouxdelens.com>
2525
* @author Wouter de Jong <wouter@wouterj.nl>
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 <wouter@wouterj.nl>
32+
* @author Fabien Potencier <fabien@symfony.com>
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 <wouter@wouterj.nl>
26+
* @author Fabien Potencier <fabien@symfony.com>
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 <wouter@wouterj.nl>
2222
*
2323
* @property EncoderFactoryInterface $encoderFactory
24+
*
25+
* @experimental in 5.1
2426
*/
2527
trait UsernamePasswordTrait
2628
{

0 commit comments

Comments
 (0)