LdapTools\Resolver\AttributeNameResolver::toLdap PHP Method

toLdap() public method

Convert values to LDAP.
public toLdap ( array $entry ) : array
$entry array The LDAP entry.
return array
    public function toLdap(array $entry)
    {
        $toLdap = [];
        foreach ($entry as $attribute => $value) {
            $toLdap[$this->schema->getAttributeToLdap($attribute)] = $value;
        }
        return $toLdap;
    }