type() 공개 메소드

Specify $type criteria for the current field.
또한 보기: Builder::type()
또한 보기: http://docs.mongodb.org/manual/reference/operator/type/
public type ( integer $type )
$type integer
예제 #1
0
 /**
  * Specify $type criteria for the current field.
  *
  * @see Expr::type()
  * @see http://docs.mongodb.org/manual/reference/operator/type/
  * @param integer $type
  * @return self
  */
 public function type($type)
 {
     $this->expr->type($type);
     return $this;
 }
예제 #2
0
파일: Match.php 프로젝트: doctrine/mongodb
 /**
  * Specify $type criteria for the current field.
  *
  * @see Expr::type()
  * @see http://docs.mongodb.org/manual/reference/operator/type/
  * @param integer $type
  * @return $this
  */
 public function type($type)
 {
     $this->query->type($type);
     return $this;
 }