Skip to content

Commit 5fe15e9

Browse files
committed
Remove experimental flag from the authenticator system 🚀
1 parent 47befc3 commit 5fe15e9

40 files changed

+1
-69
lines changed

‎Authentication/AuthenticatorManager.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
* @author Wouter de Jong <wouter@wouterj.nl>
4040
* @author Ryan Weaver <ryan@symfonycasts.com>
4141
* @author Amaury Leroux de Lens <amaury@lerouxdelens.com>
42-
*
43-
* @experimental in 5.3
4442
*/
4543
class AuthenticatorManager implements AuthenticatorManagerInterface, UserAuthenticatorInterface
4644
{

‎Authentication/AuthenticatorManagerInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
/**
1919
* @author Wouter de Jong <wouter@wouterj.nl>
2020
* @author Ryan Weaver <ryan@symfonycasts.com>
21-
*
22-
* @experimental in 5.3
2321
*/
2422
interface AuthenticatorManagerInterface
2523
{

‎Authentication/UserAuthenticatorInterface.php

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

2020
/**
2121
* @author Wouter de Jong <wouter@wouterj.nl>
22-
*
23-
* @experimental in 5.3
2422
*/
2523
interface UserAuthenticatorInterface
2624
{

‎Authenticator/AbstractAuthenticator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
* An optional base class that creates the necessary tokens for you.
2222
*
2323
* @author Ryan Weaver <ryan@symfonycasts.com>
24-
*
25-
* @experimental in 5.3
2624
*/
2725
abstract class AbstractAuthenticator implements AuthenticatorInterface
2826
{

‎Authenticator/AbstractLoginFormAuthenticator.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* A base class to make form login authentication easier!
2323
*
2424
* @author Ryan Weaver <ryan@symfonycasts.com>
25-
*
26-
* @experimental in 5.3
2725
*/
2826
abstract class AbstractLoginFormAuthenticator extends AbstractAuthenticator implements AuthenticationEntryPointInterface, InteractiveAuthenticatorInterface
2927
{

‎Authenticator/AbstractPreAuthenticatedAuthenticator.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
* @author Fabien Potencier <fabien@symfony.com>
3434
*
3535
* @internal
36-
* @experimental in 5.3
3736
*/
3837
abstract class AbstractPreAuthenticatedAuthenticator implements InteractiveAuthenticatorInterface
3938
{

‎Authenticator/AuthenticatorInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
* @author Ryan Weaver <ryan@symfonycasts.com>
2424
* @author Amaury Leroux de Lens <amaury@lerouxdelens.com>
2525
* @author Wouter de Jong <wouter@wouterj.nl>
26-
*
27-
* @experimental in 5.3
2826
*/
2927
interface AuthenticatorInterface
3028
{

‎Authenticator/FormLoginAuthenticator.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@
1818
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
1919
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
2020
use Symfony\Component\Security\Core\Exception\AuthenticationException;
21-
use Symfony\Component\Security\Core\Exception\AuthenticationServiceException;
2221
use Symfony\Component\Security\Core\Exception\BadCredentialsException;
2322
use Symfony\Component\Security\Core\Security;
2423
use Symfony\Component\Security\Core\User\PasswordUpgraderInterface;
25-
use Symfony\Component\Security\Core\User\UserInterface;
2624
use Symfony\Component\Security\Core\User\UserProviderInterface;
2725
use Symfony\Component\Security\Http\Authentication\AuthenticationFailureHandlerInterface;
2826
use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface;
@@ -41,7 +39,6 @@
4139
* @author Fabien Potencier <fabien@symfony.com>
4240
*
4341
* @final
44-
* @experimental in 5.3
4542
*/
4643
class FormLoginAuthenticator extends AbstractLoginFormAuthenticator
4744
{

‎Authenticator/HttpBasicAuthenticator.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
1818
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
1919
use Symfony\Component\Security\Core\Exception\AuthenticationException;
20-
use Symfony\Component\Security\Core\Exception\AuthenticationServiceException;
2120
use Symfony\Component\Security\Core\User\PasswordUpgraderInterface;
22-
use Symfony\Component\Security\Core\User\UserInterface;
2321
use Symfony\Component\Security\Core\User\UserProviderInterface;
2422
use Symfony\Component\Security\Http\Authenticator\Passport\Badge\PasswordUpgradeBadge;
2523
use Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge;
@@ -33,7 +31,6 @@
3331
* @author Fabien Potencier <fabien@symfony.com>
3432
*
3533
* @final
36-
* @experimental in 5.3
3734
*/
3835
class HttpBasicAuthenticator implements AuthenticatorInterface, AuthenticationEntryPointInterface
3936
{

‎Authenticator/JsonLoginAuthenticator.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@
2121
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
2222
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
2323
use Symfony\Component\Security\Core\Exception\AuthenticationException;
24-
use Symfony\Component\Security\Core\Exception\AuthenticationServiceException;
2524
use Symfony\Component\Security\Core\Exception\BadCredentialsException;
2625
use Symfony\Component\Security\Core\Security;
2726
use Symfony\Component\Security\Core\User\PasswordUpgraderInterface;
28-
use Symfony\Component\Security\Core\User\UserInterface;
2927
use Symfony\Component\Security\Core\User\UserProviderInterface;
3028
use Symfony\Component\Security\Http\Authentication\AuthenticationFailureHandlerInterface;
3129
use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface;
@@ -45,7 +43,6 @@
4543
* @author Wouter de Jong <wouter@wouterj.nl>
4644
*
4745
* @final
48-
* @experimental in 5.3
4946
*/
5047
class JsonLoginAuthenticator implements InteractiveAuthenticatorInterface
5148
{

0 commit comments

Comments
 (0)