min = $min; } function setMax($max) { $this->max = $max; } function apply(DataQuery $query) { $query->where(sprintf( "%s >= %s AND %s <= %s", $this->getDbName(), Convert::raw2sql($this->min), $this->getDbName(), Convert::raw2sql($this->max) )); } } ?>