summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Filter/GeoBoundingBox.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2015-10-18 09:31:31 +0200
committerPierre Schmitz <pierre@archlinux.de>2015-10-18 09:31:31 +0200
commit80f7dc77d430774192b929d780f96260066df2ee (patch)
tree102eaae7fc9ec567f2af76e96da3de2d1e83afcf /vendor/ruflin/elastica/lib/Elastica/Filter/GeoBoundingBox.php
parentcccd7bb4d819334c07e0dadaf16cbfdef31880e1 (diff)
Update to MediaWiki 1.25.3
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Filter/GeoBoundingBox.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Filter/GeoBoundingBox.php49
1 files changed, 0 insertions, 49 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Filter/GeoBoundingBox.php b/vendor/ruflin/elastica/lib/Elastica/Filter/GeoBoundingBox.php
deleted file mode 100644
index 1462e9af..00000000
--- a/vendor/ruflin/elastica/lib/Elastica/Filter/GeoBoundingBox.php
+++ /dev/null
@@ -1,49 +0,0 @@
-<?php
-
-namespace Elastica\Filter;
-
-use Elastica\Exception\InvalidException;
-
-/**
- * Geo bounding box filter
- *
- * @category Xodoa
- * @package Elastica
- * @author Fabian Vogler <fabian@equivalence.ch>
- * @link http://www.elasticsearch.org/guide/reference/query-dsl/geo-bounding-box-filter.html
- */
-class GeoBoundingBox extends AbstractFilter
-{
- /**
- * Construct BoundingBoxFilter
- *
- * @param string $key Key
- * @param array $coordinates Array with top left coordinate as first and bottom right coordinate as second element
- */
- public function __construct($key, array $coordinates)
- {
- $this->addCoordinates($key, $coordinates);
- }
-
- /**
- * Add coordinates
- *
- * @param string $key Key
- * @param array $coordinates Array with top left coordinate as first and bottom right coordinate as second element
- * @throws \Elastica\Exception\InvalidException If $coordinates doesn't have two elements
- * @return \Elastica\Filter\GeoBoundingBox Current object
- */
- public function addCoordinates($key, array $coordinates)
- {
- if (!isset($coordinates[0]) || !isset($coordinates[1])) {
- throw new InvalidException('expected $coordinates to be an array with two elements');
- }
-
- $this->setParam($key, array(
- 'top_left' => $coordinates[0],
- 'bottom_right' => $coordinates[1]
- ));
-
- return $this;
- }
-}