Пример #1
0
 /**
  * @param $column
  * @param array $values
  *
  * @return $this
  */
 public function orWhereNotIn($column, array $values)
 {
     $this->setValues($values);
     $this->setPlaceholders($values);
     $this->whereClause->orWhereNotIn($column, $this->getPlaceholders());
     return $this;
 }