summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Filter/Range.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Filter/Range.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Filter/Range.php61
1 files changed, 0 insertions, 61 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Filter/Range.php b/vendor/ruflin/elastica/lib/Elastica/Filter/Range.php
deleted file mode 100644
index b142e674..00000000
--- a/vendor/ruflin/elastica/lib/Elastica/Filter/Range.php
+++ /dev/null
@@ -1,61 +0,0 @@
-<?php
-
-namespace Elastica\Filter;
-
-/**
- * Range Filter
- *
- * @category Xodoa
- * @package Elastica
- * @author Nicolas Ruflin <spam@ruflin.com>
- * @link http://www.elasticsearch.org/guide/reference/query-dsl/range-filter.html
- */
-class Range extends AbstractFilter
-{
- /**
- * Fields
- *
- * @var array Fields
- */
- protected $_fields = array();
-
- /**
- * Construct range filter
- *
- * @param string|bool $fieldName Field name
- * @param array $args Field arguments
- */
- public function __construct($fieldName = false, array $args = array())
- {
- if ($fieldName) {
- $this->addField($fieldName, $args);
- }
- }
-
- /**
- * Ads a field with arguments to the range query
- *
- * @param string $fieldName Field name
- * @param array $args Field arguments
- * @return \Elastica\Filter\Range
- */
- public function addField($fieldName, array $args)
- {
- $this->_fields[$fieldName] = $args;
-
- return $this;
- }
-
- /**
- * Converts object to array
- *
- * @see \Elastica\Filter\AbstractFilter::toArray()
- * @return array Filter array
- */
- public function toArray()
- {
- $this->setParams($this->_fields);
-
- return parent::toArray();
- }
-}