@@ -108,7 +108,7 @@ |
||
108 | 108 | private function extractSearchTerms(string $searchQuery): array |
109 | 109 | { |
110 | 110 | $terms = array_unique(explode(' ', $searchQuery)); |
111 | - return array_filter($terms, function ($term) { |
|
111 | + return array_filter($terms, function($term) { |
|
112 | 112 | return 2 <= mb_strlen($term); |
113 | 113 | }); |
114 | 114 | } |