Ldap\Connection: Rename fetchDN() to fetchDn()

We're using CamelCase names for methods.
This commit is contained in:
Johannes Meyer 2015-05-04 11:16:16 +02:00
parent 7178026b8b
commit 99213432f5
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ class Connection implements Selectable
* @return string Returns the distinguished name, or false when the given query yields no results
* @throws LdapException When the query result is empty and contains no DN to fetch
*/
public function fetchDN(Query $query, $fields = array())
public function fetchDn(Query $query, $fields = array())
{
$rows = $this->fetchAll($query, $fields);
if (count($rows) > 1) {