Пример #1
0
 /**
  * @param   int     $value1
  * @param   int     $value2
  * @param   bool    $not    
  *
  * @return  WhereCondition
  */
 protected function addBetweenCondition($value1, $value2, $not)
 {
     $this->whereClause->addBetweenCondition($this->column, $value1, $value2, $this->separator, $not);
     return $this->condition;
 }