コード例 #1
0
ファイル: DatabaseUpdate.php プロジェクト: acbramley/tdd7
 /**
  * Implements QueryConditionInterface::isNotNull().
  */
 public function isNotNull($field)
 {
     $this->condition->isNotNull($field);
     return $this;
 }
コード例 #2
0
ファイル: select.php プロジェクト: D4rk4/Kusaba-z
 public function havingIsNotNull($field)
 {
     $this->having->isNotNull($field);
     return $this;
 }