LMongo\Query\Builder::norWhereGeoIntersects PHP Method

norWhereGeoIntersects() public method

Add an "$geoIntersects geospatial operation" clause to logical $nor operation.
public norWhereGeoIntersects ( string $column, string $geometry, array $coords ) : LMongo\Query\Builder
$column string
$geometry string
$coords array
return LMongo\Query\Builder
    public function norWhereGeoIntersects($column, $geometry, array $coords)
    {
        return $this->whereGeoIntersects($column, $geometry, $coords, '$nor');
    }
Builder