class SearchApiSpellcheckSuggestion in Search API Spellcheck 7
@file Suggestion class which contains both the original search key and the suggested replacement.
Hierarchy
Expanded class hierarchy of SearchApiSpellcheckSuggestion
File
- includes/
SearchApiSpellcheckSuggestion.inc, line 7 - Suggestion class which contains both the original search key and the suggested replacement.
View source
class SearchApiSpellcheckSuggestion {
public $original;
public $suggestion;
/**
* Constructor.
*
* @param string $original
* Word, phrase or sentance which could be improved.
*
* @param string $suggestion
* Suggested replacement for the $original.
*/
public function __construct($original, $suggestion) {
$this->original = $original;
$this->suggestion = $suggestion;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SearchApiSpellcheckSuggestion:: |
public | property | ||
SearchApiSpellcheckSuggestion:: |
public | property | ||
SearchApiSpellcheckSuggestion:: |
public | function | Constructor. | 1 |