From a4ea78416e8a51dcfc54b92af7cdd7d0a853b59d Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Fri, 4 Oct 2019 20:52:14 +0200 Subject: [PATCH] [Ldap] Add security LdapUser and provider (4.4) --- security/ldap.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/security/ldap.rst b/security/ldap.rst index 8c405ff0e5f..180879a16cd 100644 --- a/security/ldap.rst +++ b/security/ldap.rst @@ -9,7 +9,7 @@ Symfony provides different means to work with an LDAP server. The Security component offers: * The ``ldap`` :doc:`user provider`, using the - :class:`Symfony\\Component\\Security\\Core\\User\\LdapUserProvider` + :class:`Symfony\\Component\\Ldap\\Security\\LdapUserProvider` class. Like all other user providers, it can be used with any authentication provider. @@ -34,6 +34,12 @@ This means that the following scenarios will work: * Loading user information from an LDAP server, while using another authentication strategy (token-based pre-authentication, for example). +.. deprecated:: 4.4 + + The class ``Symfony\Component\Security\Core\User\LdapUserProvider`` + has been deprecated in Symfony 4.4. Use the class + ``Symfony\Component\Ldap\Security\LdapUserProvider`` instead. + Installation ------------