Ldap\Connection: Rename method deleteDN() to deleteDn()

This commit is contained in:
Johannes Meyer 2015-06-23 15:21:32 +02:00
parent 3f5cd4b670
commit 87e31f497e
1 changed files with 2 additions and 2 deletions

View File

@ -238,10 +238,10 @@ class Connection implements Selectable
throw new LdapException('Recursively deleting "%s" failed', $dn); throw new LdapException('Recursively deleting "%s" failed', $dn);
} }
} }
return $this->deleteDN($dn); return $this->deleteDn($dn);
} }
public function deleteDN($dn) public function deleteDn($dn)
{ {
$this->connect(); $this->connect();
$this->bind(); $this->bind();