Ldap\Connection: Rename method deleteDN() to deleteDn()
This commit is contained in:
parent
3f5cd4b670
commit
87e31f497e
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue