File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/Builder Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 15
15
use Magento \Framework \Search \Adapter \Preprocessor \PreprocessorInterface ;
16
16
17
17
/**
18
+ * Class for building select where condition.
19
+ *
18
20
* @api
19
21
*/
20
22
class Match implements QueryInterface
21
23
{
22
- const SPECIAL_CHARACTERS = '-+~/ \\<> \'":*$#@()!,.?`=%&^ ' ;
24
+ /**
25
+ * @var string
26
+ */
27
+ const SPECIAL_CHARACTERS = '+~/ \\<> \'":*$#@()!,.?`=%&^ ' ;
23
28
24
29
const MINIMAL_CHARACTER_LENGTH = 3 ;
25
30
@@ -69,7 +74,7 @@ public function __construct(
69
74
}
70
75
71
76
/**
72
- * { @inheritdoc}
77
+ * @inheritdoc
73
78
*/
74
79
public function build (
75
80
ScoreBuilder $ scoreBuilder ,
@@ -113,6 +118,8 @@ public function build(
113
118
}
114
119
115
120
/**
121
+ * Prepare query value for build function.
122
+ *
116
123
* @param string $queryValue
117
124
* @param string $conditionType
118
125
* @return string
You can’t perform that action at this time.
0 commit comments