示例#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;
 }