diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2013-06-13 10:14:47 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-06-13 10:14:47 +0200 |
commit | 8b11ccf4f72148baf71a7946cae85cd30ecc6072 (patch) | |
tree | 2b512b0bb950130fca4587cf596ee4409fb32bd0 | |
parent | faa0cebf9366ac8aeb9536668349922b91077925 (diff) | |
download | symfony-security-8b11ccf4f72148baf71a7946cae85cd30ecc6072.zip symfony-security-8b11ccf4f72148baf71a7946cae85cd30ecc6072.tar.gz symfony-security-8b11ccf4f72148baf71a7946cae85cd30ecc6072.tar.bz2 |
Revert "marked some classes as being experimental in 2.3"
This reverts commit 74cfc84c87ac281d1ed5aeb8eca9c86ae46c50cf.
7 files changed, 0 insertions, 14 deletions
diff --git a/Core/Authentication/Provider/SimpleAuthenticationProvider.php b/Core/Authentication/Provider/SimpleAuthenticationProvider.php index 50c9a08..8f8cceb 100644 --- a/Core/Authentication/Provider/SimpleAuthenticationProvider.php +++ b/Core/Authentication/Provider/SimpleAuthenticationProvider.php @@ -24,8 +24,6 @@ use Symfony\Component\Security\Core\Exception\AuthenticationException; /** * @author Jordi Boggiano <j.boggiano@seld.be> - * - * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimpleAuthenticationProvider implements AuthenticationProviderInterface { diff --git a/Core/Authentication/SimpleAuthenticatorInterface.php b/Core/Authentication/SimpleAuthenticatorInterface.php index e8ad7b8..868d072 100644 --- a/Core/Authentication/SimpleAuthenticatorInterface.php +++ b/Core/Authentication/SimpleAuthenticatorInterface.php @@ -16,8 +16,6 @@ use Symfony\Component\Security\Core\User\UserProviderInterface; /** * @author Jordi Boggiano <j.boggiano@seld.be> - * - * @experimental This feature is experimental in 2.3 and might change in future versions */ interface SimpleAuthenticatorInterface { diff --git a/Core/Authentication/SimpleFormAuthenticatorInterface.php b/Core/Authentication/SimpleFormAuthenticatorInterface.php index bfc3ec2..95ee881 100644 --- a/Core/Authentication/SimpleFormAuthenticatorInterface.php +++ b/Core/Authentication/SimpleFormAuthenticatorInterface.php @@ -15,8 +15,6 @@ use Symfony\Component\HttpFoundation\Request; /** * @author Jordi Boggiano <j.boggiano@seld.be> - * - * @experimental This feature is experimental in 2.3 and might change in future versions */ interface SimpleFormAuthenticatorInterface extends SimpleAuthenticatorInterface { diff --git a/Core/Authentication/SimplePreAuthenticatorInterface.php b/Core/Authentication/SimplePreAuthenticatorInterface.php index 8fa7037..6164e7d 100644 --- a/Core/Authentication/SimplePreAuthenticatorInterface.php +++ b/Core/Authentication/SimplePreAuthenticatorInterface.php @@ -15,8 +15,6 @@ use Symfony\Component\HttpFoundation\Request; /** * @author Jordi Boggiano <j.boggiano@seld.be> - * - * @experimental This feature is experimental in 2.3 and might change in future versions */ interface SimplePreAuthenticatorInterface extends SimpleAuthenticatorInterface { diff --git a/Http/Authentication/SimpleAuthenticationHandler.php b/Http/Authentication/SimpleAuthenticationHandler.php index 88be8e4..ce56ee3 100644 --- a/Http/Authentication/SimpleAuthenticationHandler.php +++ b/Http/Authentication/SimpleAuthenticationHandler.php @@ -26,8 +26,6 @@ use Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface; * the default handlers are triggered. * * @author Jordi Boggiano <j.boggiano@seld.be> - * - * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimpleAuthenticationHandler implements AuthenticationFailureHandlerInterface, AuthenticationSuccessHandlerInterface { diff --git a/Http/Firewall/SimpleFormAuthenticationListener.php b/Http/Firewall/SimpleFormAuthenticationListener.php index 8325bb1..7c4b971 100644 --- a/Http/Firewall/SimpleFormAuthenticationListener.php +++ b/Http/Firewall/SimpleFormAuthenticationListener.php @@ -32,8 +32,6 @@ use Psr\Log\LoggerInterface; /** * @author Jordi Boggiano <j.boggiano@seld.be> - * - * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimpleFormAuthenticationListener extends AbstractAuthenticationListener { diff --git a/Http/Firewall/SimplePreAuthenticationListener.php b/Http/Firewall/SimplePreAuthenticationListener.php index 637ed39..2a6b4d5 100644 --- a/Http/Firewall/SimplePreAuthenticationListener.php +++ b/Http/Firewall/SimplePreAuthenticationListener.php @@ -28,8 +28,6 @@ use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerI * SimplePreAuthenticationListener implements simple proxying to an authenticator. * * @author Jordi Boggiano <j.boggiano@seld.be> - * - * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimplePreAuthenticationListener implements ListenerInterface { |