Bolt\Storage\Query\ContentQueryParser::parseDirectives PHP Method

parseDirectives() protected method

All these need to parsed and taken out of the params that are sent to the query.
protected parseDirectives ( )
    protected function parseDirectives()
    {
        if (!$this->params) {
            return;
        }
        foreach ($this->params as $key => $value) {
            if ($this->hasDirectiveHandler($key)) {
                $this->directives[$key] = $value;
                unset($this->params[$key]);
            }
        }
    }