Search\Manager::remove PHP Method

remove() public method

Removes filter from the active collection.
public remove ( string $name ) : void
$name string Name of the filter to be removed.
return void
    public function remove($name)
    {
        unset($this->_filters[$this->_collection][$name]);
    }