comment() 공개 메소드

Associates a comment to any expression taking a query predicate.
또한 보기: Builder::comment()
또한 보기: http://docs.mongodb.org/manual/reference/operator/query/comment/
public comment ( string $comment )
$comment string
예제 #1
0
 /**
  * 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;
 }