Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Feb 21, 2017
1 parent 0128b9f commit caf1056
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions framework/Ldap/lib/Horde/Ldap/RootDse.php
Expand Up @@ -87,7 +87,7 @@ public function getValue($attr, $options = '')
*/
public function supportedExtension($oids)
{
return $this->checkAttr($oids, 'supportedExtension');
return $this->_checkAttr($oids, 'supportedExtension');
}

/**
Expand All @@ -99,7 +99,7 @@ public function supportedExtension($oids)
*/
public function supportedVersion($versions)
{
return $this->checkAttr($versions, 'supportedLDAPVersion');
return $this->_checkAttr($versions, 'supportedLDAPVersion');
}

/**
Expand All @@ -111,7 +111,7 @@ public function supportedVersion($versions)
*/
public function supportedControl($oids)
{
return $this->checkAttr($oids, 'supportedControl');
return $this->_checkAttr($oids, 'supportedControl');
}

/**
Expand All @@ -134,7 +134,7 @@ public function supportedSASLMechanism($mechlist)
*
* @return boolean
*/
protected function checkAttr($values, $attr)
protected function _checkAttr($values, $attr)
{
if (!is_array($values)) {
$values = array($values);
Expand Down

0 comments on commit caf1056

Please sign in to comment.