From e6c5c29837f3e47f7d5c9bfb0be15ad763be379f Mon Sep 17 00:00:00 2001 From: Jason Johnstone Date: Tue, 22 Jun 2021 12:00:49 -0500 Subject: [PATCH] Update ldap.rst Add single quotes in filter option documentation --- components/ldap.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ldap.rst b/components/ldap.rst index 1d281a15e0d..08caf52b3e8 100644 --- a/components/ldap.rst +++ b/components/ldap.rst @@ -117,7 +117,7 @@ to the ``LDAP_SCOPE_BASE`` scope of :phpfunction:`ldap_read`) and ``SCOPE_ONE`` Use the ``filter`` option to only retrieve some specific attributes: - $query = $ldap->query('dc=symfony,dc=com', '...', ['filter' => ['cn, mail']); + $query = $ldap->query('dc=symfony,dc=com', '...', ['filter' => ['cn', 'mail']); Creating or Updating Entries ----------------------------