summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Query/Boosting.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2015-12-20 09:00:55 +0100
committerPierre Schmitz <pierre@archlinux.de>2015-12-20 09:00:55 +0100
commita2190ac74dd4d7080b12bab90e552d7aa81209ef (patch)
tree8b31f38de9882d18df54cf8d9e0de74167a094eb /vendor/ruflin/elastica/lib/Elastica/Query/Boosting.php
parent15e69f7b20b6596b9148030acce5b59993b95a45 (diff)
parent257401d8b2cf661adf36c84b0e3fd1cf85e33c22 (diff)
Merge branch 'mw-1.26'
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Query/Boosting.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Query/Boosting.php28
1 files changed, 17 insertions, 11 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Query/Boosting.php b/vendor/ruflin/elastica/lib/Elastica/Query/Boosting.php
index fe429637..95dcde3d 100644
--- a/vendor/ruflin/elastica/lib/Elastica/Query/Boosting.php
+++ b/vendor/ruflin/elastica/lib/Elastica/Query/Boosting.php
@@ -1,21 +1,23 @@
<?php
-
namespace Elastica\Query;
/**
- * Class Boosting
- * @package Elastica\Query
+ * Class Boosting.
+ *
* @author Balazs Nadasdi <yitsushi@gmail.com>
- * @link http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-boosting-query.html
+ *
+ * @link http://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-boosting-query.html
*/
class Boosting extends AbstractQuery
{
const NEGATIVE_BOOST = 0.2;
/**
- * Set the positive query for this Boosting Query
+ * Set the positive query for this Boosting Query.
+ *
* @param AbstractQuery $query
- * @return \Elastica\Query\Boosting
+ *
+ * @return $this
*/
public function setPositiveQuery(AbstractQuery $query)
{
@@ -23,9 +25,11 @@ class Boosting extends AbstractQuery
}
/**
- * Set the negative query for this Boosting Query
+ * Set the negative query for this Boosting Query.
+ *
* @param AbstractQuery $query
- * @return \Elastica\Query\Boosting
+ *
+ * @return $this
*/
public function setNegativeQuery(AbstractQuery $query)
{
@@ -33,12 +37,14 @@ class Boosting extends AbstractQuery
}
/**
- * Set the negative_boost parameter for this Boosting Query
+ * Set the negative_boost parameter for this Boosting Query.
+ *
* @param Float $negativeBoost
- * @return \Elastica\Query\Boosting
+ *
+ * @return $this
*/
public function setNegativeBoost($negativeBoost)
{
- return $this->setParam('negative_boost', (float)$negativeBoost);
+ return $this->setParam('negative_boost', (float) $negativeBoost);
}
}