Skip to content

Updated code example for LDAP integration #7917

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix class name in LDAP PHP code example
  • Loading branch information
pmlt committed May 26, 2017
commit 0f9bc5f3bfb79d52340a33c4ea814de6cb97aebf
2 changes: 1 addition & 1 deletion security/ldap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ extension with the following service definition:
->addArgument(new Reference('ext_ldap_adapter'));

$container
->setDefinition('ext_ldap_adapter', new Definition(Ldap::class, array(
->setDefinition('ext_ldap_adapter', new Definition(Adapter::class, array(
'host' => 'my-server',
'port' => 389,
'encryption' => 'tls',
Expand Down