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 --- .../elastica/lib/Elastica/Filter/Indices.php | 51 ---------------------- 1 file changed, 51 deletions(-) delete mode 100644 vendor/ruflin/elastica/lib/Elastica/Filter/Indices.php (limited to 'vendor/ruflin/elastica/lib/Elastica/Filter/Indices.php') diff --git a/vendor/ruflin/elastica/lib/Elastica/Filter/Indices.php b/vendor/ruflin/elastica/lib/Elastica/Filter/Indices.php deleted file mode 100644 index 66ca5965..00000000 --- a/vendor/ruflin/elastica/lib/Elastica/Filter/Indices.php +++ /dev/null @@ -1,51 +0,0 @@ -setIndices($indices)->setFilter($filter); - } - - /** - * Set the names of the indices on which this filter should be applied - * @param string[] $indices - * @return Indices - */ - public function setIndices(array $indices) - { - return $this->setParam('indices', $indices); - } - - /** - * Set the filter to be applied to docs in the specified indices - * @param AbstractFilter $filter - * @return Indices - */ - public function setFilter(AbstractFilter $filter) - { - return $this->setParam('filter', $filter->toArray()); - } - - /** - * Set the filter to be applied to docs in indices which do not match those specified in the "indices" parameter - * @param AbstractFilter $filter - * @return Indices - */ - public function setNoMatchFilter(AbstractFilter $filter) - { - return $this->setParam('no_match_filter', $filter->toArray()); - } -} \ No newline at end of file -- cgit v1.2.3-54-g00ecf