summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Query/HasParent.php
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-05-01 15:30:47 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-05-01 15:30:47 -0400
commit7e85254903c7c0cb49e381f16b18441ea7b058cc (patch)
treeb22328fcf4c8408fc25a7acb73d1cb1089cd82ac /vendor/ruflin/elastica/lib/Elastica/Query/HasParent.php
parent1de335ad3f395ca6861085393ba366a9e3fb4a0d (diff)
parent1a365e77dfb8825136626202b1df462731b42060 (diff)
Merge commit '1a365e'
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Query/HasParent.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Query/HasParent.php62
1 files changed, 62 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Query/HasParent.php b/vendor/ruflin/elastica/lib/Elastica/Query/HasParent.php
new file mode 100644
index 00000000..809fb18d
--- /dev/null
+++ b/vendor/ruflin/elastica/lib/Elastica/Query/HasParent.php
@@ -0,0 +1,62 @@
+<?php
+
+namespace Elastica\Query;
+use Elastica\Query as BaseQuery;
+
+/**
+ * Returns child documents having parent docs matching the query
+ *
+ * @category Xodoa
+ * @package Elastica
+ * @link http://www.elasticsearch.org/guide/reference/query-dsl/has-parent-query.html
+ */
+class HasParent extends AbstractQuery
+{
+ /**
+ * Construct HasChild Query
+ *
+ * @param string|\Elastica\Query|\Elastica\Query\AbstractQuery $query
+ * @param string $type Parent document type
+ */
+ public function __construct($query, $type)
+ {
+ $this->setQuery($query);
+ $this->setType($type);
+ }
+
+ /**
+ * Sets query object
+ *
+ * @param string|\Elastica\Query|\Elastica\Query\AbstractQuery $query
+ * @return \Elastica\Filter\HasParent
+ */
+ public function setQuery($query)
+ {
+ $query = BaseQuery::create($query);
+ $data = $query->toArray();
+
+ return $this->setParam('query', $data['query']);
+ }
+
+ /**
+ * Set type of the parent document
+ *
+ * @param string $type Parent document type
+ * @return \Elastica\Filter\HasParent Current object
+ */
+ public function setType($type)
+ {
+ return $this->setParam('type', $type);
+ }
+
+ /**
+ * Sets the scope
+ *
+ * @param string $scope Scope
+ * @return \Elastica\Filter\HasParent Current object
+ */
+ public function setScope($scope)
+ {
+ return $this->setParam('_scope', $scope);
+ }
+}