From 80f7dc77d430774192b929d780f96260066df2ee Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sun, 18 Oct 2015 09:31:31 +0200 Subject: Update to MediaWiki 1.25.3 --- .../ruflin/elastica/lib/Elastica/Filter/Type.php | 60 ---------------------- 1 file changed, 60 deletions(-) delete mode 100644 vendor/ruflin/elastica/lib/Elastica/Filter/Type.php (limited to 'vendor/ruflin/elastica/lib/Elastica/Filter/Type.php') diff --git a/vendor/ruflin/elastica/lib/Elastica/Filter/Type.php b/vendor/ruflin/elastica/lib/Elastica/Filter/Type.php deleted file mode 100644 index 8fb58c7d..00000000 --- a/vendor/ruflin/elastica/lib/Elastica/Filter/Type.php +++ /dev/null @@ -1,60 +0,0 @@ - - * @link http://www.elasticsearch.org/guide/reference/query-dsl/type-filter.html - */ -class Type extends AbstractFilter -{ - /** - * Type name - * - * @var string - */ - protected $_type = null; - - /** - * Construct Type Filter - * - * @param string $typeName Type name - * @return \Elastica\Filter\Type - */ - public function __construct($typeName = null) - { - if ($typeName) { - $this->setType($typeName); - } - } - - /** - * Ads a field with arguments to the range query - * - * @param string $typeName Type name - * @return \Elastica\Filter\Type current object - */ - public function setType($typeName) - { - $this->_type = $typeName; - - return $this; - } - - /** - * Convert object to array - * - * @see \Elastica\Filter\AbstractFilter::toArray() - * @return array Filter array - */ - public function toArray() - { - return array( - 'type' => array('value' => $this->_type) - ); - } -} -- cgit v1.2.3-54-g00ecf