Exemplo n.º 1
0
 /**
  * @param   mixed   $value
  * @param   bool    $not
  *
  * @return  WhereStatement
  */
 protected function addInCondition($value, bool $not) : WhereStatement
 {
     $this->sql->addWhereInCondition($this->column, $value, $this->separator, $not);
     return $this->statement;
 }