LMongo\Query\Builder::norWhereGeoWithin PHP 메소드

norWhereGeoWithin() 공개 메소드

Add an "$geoWithin geospatial operation" clause to logical $nor operation.
public norWhereGeoWithin ( string $column, string $shape, array $coords ) : LMongo\Query\Builder
$column string
$shape string
$coords array
리턴 LMongo\Query\Builder
    public function norWhereGeoWithin($column, $shape, array $coords)
    {
        return $this->whereGeoWithin($column, $shape, $coords, '$nor');
    }
Builder