LdapTools\Query\OperatorCollection::sortOperatorsToArray PHP Method

sortOperatorsToArray() protected method

Merges all the Operators into one large array in a specific order. Before doing so, it will apply any schemas that exist.
protected sortOperatorsToArray ( ) : BaseOperator[]
return LdapTools\Query\Operator\BaseOperator[]
    protected function sortOperatorsToArray()
    {
        return array_merge($this->operators['and'], $this->operators['or'], $this->operators['not'], $this->operators['comparison'], $this->operators['wildcard'], $this->operators['matchingrule']);
    }