예제 #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;
 }