コード例 #1
0
ファイル: Builder.php プロジェクト: cosmow/riak
 /**
  * Specify $exists criteria for the current field.
  *
  * @see Expr::exists()
  * @see http://docs.mongodb.org/manual/reference/operator/exists/
  * @param boolean $bool
  * @return self
  */
 public function exists($bool)
 {
     $this->expr->exists((bool) $bool);
     return $this;
 }