Bolt\Storage\Query\QueryParameterParser::addFilterHandler PHP Метод

addFilterHandler() публичный Метод

Adding a handler here will push the new filter callback onto the top of the Queue along with the built in defaults. Note: the callback should either return nothing or an instance of \Bolt\Storage\Query\Filter
public addFilterHandler ( callable $handler )
$handler callable
    public function addFilterHandler(callable $handler)
    {
        array_unshift($this->filterHandlers, $handler);
    }