diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php index 8fdef89a7415e..f13fd5e08d102 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php @@ -18,6 +18,8 @@ /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimpleFormFactory extends FormLoginFactory { diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimplePreAuthenticationFactory.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimplePreAuthenticationFactory.php index 27d8c5f050ec5..689316e26f5bd 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimplePreAuthenticationFactory.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimplePreAuthenticationFactory.php @@ -18,6 +18,8 @@ /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimplePreAuthenticationFactory implements SecurityFactoryInterface { diff --git a/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php b/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php index 8f8ccebb43761..50c9a08a7acce 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php +++ b/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php @@ -24,6 +24,8 @@ /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimpleAuthenticationProvider implements AuthenticationProviderInterface { diff --git a/src/Symfony/Component/Security/Core/Authentication/SimpleAuthenticatorInterface.php b/src/Symfony/Component/Security/Core/Authentication/SimpleAuthenticatorInterface.php index 868d072714834..e8ad7b8fe7c27 100644 --- a/src/Symfony/Component/Security/Core/Authentication/SimpleAuthenticatorInterface.php +++ b/src/Symfony/Component/Security/Core/Authentication/SimpleAuthenticatorInterface.php @@ -16,6 +16,8 @@ /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ interface SimpleAuthenticatorInterface { diff --git a/src/Symfony/Component/Security/Core/Authentication/SimpleFormAuthenticatorInterface.php b/src/Symfony/Component/Security/Core/Authentication/SimpleFormAuthenticatorInterface.php index 95ee881c18d82..bfc3ec240eb36 100644 --- a/src/Symfony/Component/Security/Core/Authentication/SimpleFormAuthenticatorInterface.php +++ b/src/Symfony/Component/Security/Core/Authentication/SimpleFormAuthenticatorInterface.php @@ -15,6 +15,8 @@ /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ interface SimpleFormAuthenticatorInterface extends SimpleAuthenticatorInterface { diff --git a/src/Symfony/Component/Security/Core/Authentication/SimplePreAuthenticatorInterface.php b/src/Symfony/Component/Security/Core/Authentication/SimplePreAuthenticatorInterface.php index 6164e7d9860a7..8fa7037d396f5 100644 --- a/src/Symfony/Component/Security/Core/Authentication/SimplePreAuthenticatorInterface.php +++ b/src/Symfony/Component/Security/Core/Authentication/SimplePreAuthenticatorInterface.php @@ -15,6 +15,8 @@ /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ interface SimplePreAuthenticatorInterface extends SimpleAuthenticatorInterface { diff --git a/src/Symfony/Component/Security/Http/Authentication/SimpleAuthenticationHandler.php b/src/Symfony/Component/Security/Http/Authentication/SimpleAuthenticationHandler.php index ce56ee3f88053..88be8e4b1f7e5 100644 --- a/src/Symfony/Component/Security/Http/Authentication/SimpleAuthenticationHandler.php +++ b/src/Symfony/Component/Security/Http/Authentication/SimpleAuthenticationHandler.php @@ -26,6 +26,8 @@ * the default handlers are triggered. * * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimpleAuthenticationHandler implements AuthenticationFailureHandlerInterface, AuthenticationSuccessHandlerInterface { diff --git a/src/Symfony/Component/Security/Http/Firewall/SimpleFormAuthenticationListener.php b/src/Symfony/Component/Security/Http/Firewall/SimpleFormAuthenticationListener.php index 7c4b9716ad5c1..8325bb1920574 100644 --- a/src/Symfony/Component/Security/Http/Firewall/SimpleFormAuthenticationListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/SimpleFormAuthenticationListener.php @@ -32,6 +32,8 @@ /** * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimpleFormAuthenticationListener extends AbstractAuthenticationListener { diff --git a/src/Symfony/Component/Security/Http/Firewall/SimplePreAuthenticationListener.php b/src/Symfony/Component/Security/Http/Firewall/SimplePreAuthenticationListener.php index 2a6b4d5c0d291..637ed396a0b7b 100644 --- a/src/Symfony/Component/Security/Http/Firewall/SimplePreAuthenticationListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/SimplePreAuthenticationListener.php @@ -28,6 +28,8 @@ * SimplePreAuthenticationListener implements simple proxying to an authenticator. * * @author Jordi Boggiano + * + * @experimental This feature is experimental in 2.3 and might change in future versions */ class SimplePreAuthenticationListener implements ListenerInterface {