summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Grekas <nicolas.grekas@gmail.com>2016-06-03 13:02:38 +0200
committerNicolas Grekas <nicolas.grekas@gmail.com>2016-06-03 13:02:38 +0200
commit3f02527e0892c745e2dfed23e790bade7b058084 (patch)
tree708ed5672639fab919dc5952f46fa4f68e171580
parent55444da85ab15652323bdd3eeb23be9118aba45a (diff)
parent8dbf7cc15af54e37e1b991903c0269e50867b23b (diff)
downloadsymfony-security-3f02527e0892c745e2dfed23e790bade7b058084.zip
symfony-security-3f02527e0892c745e2dfed23e790bade7b058084.tar.gz
symfony-security-3f02527e0892c745e2dfed23e790bade7b058084.tar.bz2
minor #18945 [Security] LdapUserProvider: add missing argument type doc (xabbuh)v3.1.1
This PR was merged into the 3.1 branch. Discussion ---------- [Security] LdapUserProvider: add missing argument type doc | Q | A | ------------- | --- | Branch? | 3.1 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | Commits ------- bff9c36 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)
{