We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95c294e commit 08c2483Copy full SHA for 08c2483
1 file changed
src/Mapping/Analyzer/AbstractDictionary.php
@@ -12,6 +12,19 @@ abstract class AbstractDictionary
12
*/
13
protected $filter;
14
15
+ /**
16
+ * @var \Spameri\ElasticQuery\Mapping\Filter\Stop
17
+ */
18
+ protected $stopFilter;
19
+
20
21
+ public function __construct(
22
+ ?\Spameri\ElasticQuery\Mapping\Filter\Stop $stopFilter = NULL
23
+ )
24
+ {
25
+ $this->stopFilter = $stopFilter;
26
+ }
27
28
29
public function key() : string
30
{
0 commit comments