From 87e31f497eca7de24f5281f012862bafb519a535 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 23 Jun 2015 15:21:32 +0200 Subject: [PATCH] Ldap\Connection: Rename method deleteDN() to deleteDn() --- library/Icinga/Protocol/Ldap/Connection.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Icinga/Protocol/Ldap/Connection.php b/library/Icinga/Protocol/Ldap/Connection.php index 966dd2667..abf52d66c 100644 --- a/library/Icinga/Protocol/Ldap/Connection.php +++ b/library/Icinga/Protocol/Ldap/Connection.php @@ -238,10 +238,10 @@ class Connection implements Selectable 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->bind();