LdapTools\Resolver\ParameterResolver::resolve PHP Method

resolve() public method

Gets the attributes with all of the parameters resolved.
public resolve ( ) : array
return array
    public function resolve()
    {
        if (!empty($this->resolvedParameters)) {
            return $this->attributes;
        }
        $this->evaluateRequirements($this->attributes);
        $this->resolveAllParameters();
        return $this->attributes;
    }