Skip to content

Commit 88f6101

Browse files
committed
Fix incorrect line indent
1 parent 38c4a3e commit 88f6101

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Search/Model/SynonymAnalyzer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ private function getSearchPattern(array $words): string
138138
$patterns = [];
139139
for ($lastItem = count($words); $lastItem > 0; $lastItem--) {
140140
$words = array_map(function ($word) {
141-
return preg_quote($word, '/');
141+
return preg_quote($word, '/');
142142
}, $words);
143143
$phrase = implode("\s+", \array_slice($words, 0, $lastItem));
144144
$patterns[] = '^' . $phrase . ',';

0 commit comments

Comments
 (0)