summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Suggest.php
diff options
context:
space:
mode:
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();
+ }
+}