コード例 #1
0
ファイル: Builder.php プロジェクト: cosmow/riak
 /**
  * Associates a comment to any expression taking a query predicate.
  *
  * @see Expr::comment()
  * @see http://docs.mongodb.org/manual/reference/operator/query/comment/
  * @param string $comment
  * @return self
  */
 public function comment($comment)
 {
     $this->expr->comment($comment);
     return $this;
 }