summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Suggest.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2015-12-17 09:15:42 +0100
committerPierre Schmitz <pierre@archlinux.de>2015-12-17 09:44:51 +0100
commita1789ddde42033f1b05cc4929491214ee6e79383 (patch)
tree63615735c4ddffaaabf2428946bb26f90899f7bf /vendor/ruflin/elastica/lib/Elastica/Suggest.php
parent9e06a62f265e3a2aaabecc598d4bc617e06fa32d (diff)
Update to MediaWiki 1.26.0
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Suggest.php')
-rw-r--r--vendor/ruflin/elastica/lib/Elastica/Suggest.php65
1 files changed, 65 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Suggest.php b/vendor/ruflin/elastica/lib/Elastica/Suggest.php
new file mode 100644
index 00000000..73b1ea36
--- /dev/null
+++ b/vendor/ruflin/elastica/lib/Elastica/Suggest.php
@@ -0,0 +1,65 @@
+<?php
+namespace Elastica;
+
+use Elastica\Exception\NotImplementedException;
+use Elastica\Suggest\AbstractSuggest;
+
+/**
+ * Class Suggest.
+ *
+ * @link http://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters.html
+ */
+class Suggest extends Param
+{
+ /**
+ * @param AbstractSuggest $suggestion
+ */
+ public function __construct(AbstractSuggest $suggestion = null)
+ {
+ if (!is_null($suggestion)) {
+ $this->addSuggestion($suggestion);
+ }
+ }
+
+ /**
+ * Set the global text for this suggester.
+ *
+ * @param string $text
+ *
+ * @return $this
+ */
+ public function setGlobalText($text)
+ {
+ return $this->setParam('text', $text);
+ }
+
+ /**
+ * Add a suggestion to this suggest clause.
+ *
+ * @param AbstractSuggest $suggestion
+ *
+ * @return $this
+ */
+ public function addSuggestion(AbstractSuggest $suggestion)
+ {
+ return $this->setParam($suggestion->getName(), $suggestion->toArray());
+ }
+
+ /**
+ * @param Suggest|AbstractSuggest $suggestion
+ *
+ * @throws Exception\NotImplementedException
+ *
+ * @return self
+ */
+ public static function create($suggestion)
+ {
+ switch (true) {
+ case $suggestion instanceof self:
+ return $suggestion;
+ case $suggestion instanceof AbstractSuggest:
+ return new self($suggestion);
+ }
+ throw new NotImplementedException();
+ }
+}