LdapTools\Hydrator\HydrateQueryTrait::isWildCardSelection PHP Method

isWildCardSelection() protected method

A wildcard selection can either be '*' or '**' depending on the context of the call (with or without a schema).
protected isWildCardSelection ( ) : boolean
return boolean
    protected function isWildCardSelection()
    {
        return count($this->operation->getAttributes()) === 1 && ($this->operation->getAttributes()[0] == '*' || $this->operation->getAttributes()[0] == '**');
    }