BookStack\Services\Ldap::bind PHP Method

bind() public method

Bind to LDAP directory.
public bind ( resource $ldapConnection, string $bindRdn = null, string $bindPassword = null ) : boolean
$ldapConnection resource
$bindRdn string
$bindPassword string
return boolean
    public function bind($ldapConnection, $bindRdn = null, $bindPassword = null)
    {
        return ldap_bind($ldapConnection, $bindRdn, $bindPassword);
    }