equals() 공개 메소드

Specify an equality match for the current field.
또한 보기: Builder::equals()
public equals ( mixed $value )
$value mixed
예제 #1
0
 /**
  * Specify an equality match for the current field.
  *
  * @see Expr::equals()
  * @param mixed $value
  * @return self
  */
 public function equals($value)
 {
     $this->expr->equals($value);
     return $this;
 }
예제 #2
0
파일: Match.php 프로젝트: doctrine/mongodb
 /**
  * Specify an equality match for the current field.
  *
  * @see Expr::equals()
  * @param mixed $value
  * @return $this
  */
 public function equals($value)
 {
     $this->query->equals($value);
     return $this;
 }