Bolt\Storage\Query\Filter::hasParameter PHP Method

hasParameter() public method

Helper method to check if parameters are set for a specific key.
public hasParameter ( string $param ) : boolean
$param string
return boolean
    public function hasParameter($param)
    {
        return array_key_exists($param, $this->parameters);
    }