summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Filter/HasChild.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Filter/HasChild.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Filter/HasChild.php78
1 files changed, 0 insertions, 78 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Filter/HasChild.php b/vendor/ruflin/elastica/lib/Elastica/Filter/HasChild.php
deleted file mode 100644
index e8c6ab96..00000000
--- a/vendor/ruflin/elastica/lib/Elastica/Filter/HasChild.php
+++ /dev/null
@@ -1,78 +0,0 @@
-<?php
-
-namespace Elastica\Filter;
-
-/**
- * Returns parent documents having child docs matching the query
- *
- * @category Xodoa
- * @package Elastica
- * @author Fabian Vogler <fabian@equivalence.ch>
- * @link http://www.elasticsearch.org/guide/reference/query-dsl/has-child-filter.html
- */
-class HasChild extends AbstractFilter
-{
- /**
- * Construct HasChild filter
- *
- * @param string|\Elastica\Query|\Elastica\Filter\AbstractFilter $query Query string or a Elastica\Query object or a filter
- * @param string $type Parent document type
- */
- public function __construct($query, $type = null)
- {
- $this->setType($type);
- if ($query instanceof AbstractFilter) {
- $this->setFilter($query);
- } else {
- $this->setQuery($query);
- }
- }
-
- /**
- * Sets query object
- *
- * @param string|\Elastica\Query|\Elastica\Query\AbstractQuery $query
- * @return \Elastica\Filter\HasChild Current object
- */
- public function setQuery($query)
- {
- $query = \Elastica\Query::create($query);
- $data = $query->toArray();
-
- return $this->setParam('query', $data['query']);
- }
-
- /**
- * Sets the filter object
- *
- * @param \Elastica\Filter\AbstractFilter $filter
- * @return \Elastica\Filter\HasChild Current object
- */
- public function setFilter($filter)
- {
- $data = $filter->toArray();
- return $this->setParam('filter', $data);
- }
-
- /**
- * Set type of the parent document
- *
- * @param string $type Parent document type
- * @return \Elastica\Filter\HasChild Current object
- */
- public function setType($type)
- {
- return $this->setParam('type', $type);
- }
-
- /**
- * Sets the scope
- *
- * @param string $scope Scope
- * @return \Elastica\Filter\HasChild Current object
- */
- public function setScope($scope)
- {
- return $this->setParam('_scope', $scope);
- }
-}