예제 #1
0
파일: Where.php 프로젝트: opis/database
 /**
  * @param   bool    $not
  *
  * @return  WhereStatement
  */
 protected function addNullCondition(bool $not) : WhereStatement
 {
     $this->sql->addWhereNullCondition($this->column, $this->separator, $not);
     return $this->statement;
 }