Skip to content

Commit

Permalink
fixed folder tree and fixed static callback
Browse files Browse the repository at this point in the history
  • Loading branch information
hakasapl committed Sep 15, 2022
1 parent 48858fd commit 999aa5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace hakasapl\PHPOpenLDAPer;
namespace PHPOpenLDAPer;

/**
* Class that represents a connection to an LDAP server
Expand Down Expand Up @@ -80,7 +80,7 @@ public function getEntry($dn) {
public static function stripCount(&$arr) {
if(is_array($arr)) {
unset($arr['count']);
array_walk($arr, "ldapConn::stripCount");
array_walk($arr, "self::stripCount");
}
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace hakasapl\PHPOpenLDAPer;
namespace PHPOpenLDAPer;

/**
* Class that represents one entry in an LDAP server
Expand Down

0 comments on commit 999aa5a

Please sign in to comment.