Completed
Pull Request — master (#325)
by
unknown
22:33
created
src/Search/Sapi3SearchService.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@
 block discarded – undo
46 46
     public function search($query, $limit = 30, $start = 0, $sort = null)
47 47
     {
48 48
         $queryParameters = Query::createFromPairs([
49
-           'q' => $query,
50
-           'start' => (string) $start,
51
-           'limit' => (string) $limit,
49
+            'q' => $query,
50
+            'start' => (string) $start,
51
+            'limit' => (string) $limit,
52 52
         ]);
53 53
         $queryString = str_replace('+', '%2B', (string) $queryParameters);
54 54
         $offerQueryUri = $this->searchLocation->withQuery($queryString);
Please login to merge, or discard this patch.