Skip to content

Commit

Permalink
fix ldap_first_entry signature (#914)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Coutadeur authored and davidcoutadeur committed Aug 30, 2024
1 parent c4c8507 commit 2fc2bef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Ltb/PhpLDAP.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ public static function ldap_mod_replace(...$args)
return ldap_mod_replace(...$args);
}

public static function ldap_first_entry($ldap, $entry, $attribute)
public static function ldap_first_entry(...$args)
{
return ldap_first_entry($ldap, $entry, $attribute);
return ldap_first_entry(...$args);
}

}
Expand Down

0 comments on commit 2fc2bef

Please sign in to comment.