summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Flothmann <christian.flothmann@xabbuh.de>2016-06-01 23:22:27 +0200
committerChristian Flothmann <christian.flothmann@xabbuh.de>2016-06-01 23:24:55 +0200
commit8dbf7cc15af54e37e1b991903c0269e50867b23b (patch)
tree6b4b5e92b90a04e89a4b178d02ee904c13073c68
parent3b89f41a6a9e015da1bd008be13c985349f86e7b (diff)
downloadsymfony-security-8dbf7cc15af54e37e1b991903c0269e50867b23b.zip
symfony-security-8dbf7cc15af54e37e1b991903c0269e50867b23b.tar.gz
symfony-security-8dbf7cc15af54e37e1b991903c0269e50867b23b.tar.bz2
LdapUserProvider: add missing argument type doc
-rw-r--r--Core/User/LdapUserProvider.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/Core/User/LdapUserProvider.php b/Core/User/LdapUserProvider.php
index e722c98..5eb7668 100644
--- a/Core/User/LdapUserProvider.php
+++ b/Core/User/LdapUserProvider.php
@@ -42,6 +42,7 @@ class LdapUserProvider implements UserProviderInterface
* @param array $defaultRoles
* @param string $uidKey
* @param string $filter
+ * @param string $passwordAttribute
*/
public function __construct(LdapInterface $ldap, $baseDn, $searchDn = null, $searchPassword = null, array $defaultRoles = array(), $uidKey = 'sAMAccountName', $filter = '({uid_key}={username})', $passwordAttribute = null)
{