Doctrine\MongoDB\Query\Builder::withinBox PHP Method

withinBox() public method

Add $within criteria with a $box shape to the query.
See also: Builder::geoWithinBox()
See also: Expr::withinBox()
See also: http://docs.mongodb.org/manual/reference/operator/box/
Deprecation: 1.1 MongoDB 2.4 deprecated $within in favor of $geoWithin
public withinBox ( float $x1, float $y1, float $x2, float $y2 )
$x1 float
$y1 float
$x2 float
$y2 float
    public function withinBox($x1, $y1, $x2, $y2)
    {
        $this->expr->withinBox($x1, $y1, $x2, $y2);
        return $this;
    }