__construct() public method

public __construct ( Builder $builder )
$builder Doctrine\MongoDB\Aggregation\Builder
コード例 #1
0
ファイル: GeoNear.php プロジェクト: malukenho/mongodb
 /**
  * @param Builder $builder
  * @param float|array|Point $x
  * @param float $y
  */
 public function __construct(Builder $builder, $x, $y = null)
 {
     parent::__construct($builder);
     $this->near($x, $y);
 }