We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f82197 commit bd2af8bCopy full SHA for bd2af8b
security/ldap.rst
@@ -92,6 +92,7 @@ An LDAP client can be configured using the built-in
92
<services>
93
<service id="Symfony\Component\Ldap\Ldap">
94
<argument type="service" id="Symfony\Component\Ldap\Adapter\ExtLdap\Adapter"/>
95
+ <tag name="ldap"/>
96
</service>
97
<service id="Symfony\Component\Ldap\Adapter\ExtLdap\Adapter">
98
<argument type="collection">
@@ -114,7 +115,8 @@ An LDAP client can be configured using the built-in
114
115
use Symfony\Component\Ldap\Ldap;
116
117
$container->register(Ldap::class)
- ->addArgument(new Reference(Adapter::class));
118
+ ->addArgument(new Reference(Adapter::class))
119
+ ->tag('ldap');
120
121
$container
122
->register(Adapter::class)
0 commit comments