Test Setup Failed
Pull Request — master (#1663)
by Daniel
08:10
created
Classes/Domain/Search/Suggest/SuggestService.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
      *
79 79
      * @param SearchRequest $searchRequest
80 80
      * @param string $additionalFilters
81
-     * @return array
81
+     * @return string
82 82
      */
83 83
     public function getSuggestions(SearchRequest $searchRequest, $additionalFilters) : array
84 84
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -256,7 +256,7 @@
 block discarded – undo
256 256
      * @param string $additionalFilters
257 257
      * @return SuggestQuery
258 258
      */
259
-    protected function buildSuggestQuery(string $queryString ,string $additionalFilters) : SuggestQuery
259
+    protected function buildSuggestQuery(string $queryString, string $additionalFilters) : SuggestQuery
260 260
     {
261 261
         $suggestQuery = GeneralUtility::makeInstance(SuggestQuery::class, $queryString);
262 262
 
Please login to merge, or discard this patch.
Classes/Domain/Search/ResultSet/SearchResultSetService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -419,7 +419,7 @@
 block discarded – undo
419 419
             $response->setParsedData($parsedData);
420 420
         }
421 421
 
422
-        if($response === null) {
422
+        if ($response === null) {
423 423
             throw new SolrIncompleteResponseException('The response retrieved from solr was incomplete', 1505989678);
424 424
         }
425 425
 
Please login to merge, or discard this patch.