Passed
Pull Request — master (#1385)
by Timo
19:20
created
Classes/Domain/Search/Query/ParameterProvider/Highlighting.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
      */
163 163
     public function getQueryParameters()
164 164
     {
165
-        if(!$this->isEnabled) {
165
+        if (!$this->isEnabled) {
166 166
             return [];
167 167
         }
168 168
 
Please login to merge, or discard this patch.
Classes/Domain/Search/Query/ParameterProvider/QueryFields.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
  *
32 32
  * @package ApacheSolrForTypo3\Solr\Domain\Search\Query\ParameterProvider
33 33
  */
34
-class QueryFields implements ParameterProvider{
34
+class QueryFields implements ParameterProvider {
35 35
 
36 36
     /**
37 37
      * @var array
Please login to merge, or discard this patch.
Classes/Query.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -777,7 +777,7 @@  discard block
 block discarded – undo
777 777
     private function removeFilterByPrefix($filterFieldName)
778 778
     {
779 779
         foreach ($this->filters as $key => $filterString) {
780
-            if (GeneralUtility::isFirstPartOfStr($filterString, $filterFieldName )) {
780
+            if (GeneralUtility::isFirstPartOfStr($filterString, $filterFieldName)) {
781 781
                 unset($this->filters[$key]);
782 782
             }
783 783
         }
@@ -1211,7 +1211,7 @@  discard block
 block discarded – undo
1211 1211
      */
1212 1212
     public function setHighlighting($highlighting = true, $fragmentSize = 200)
1213 1213
     {
1214
-        if($highlighting instanceof Highlighting) {
1214
+        if ($highlighting instanceof Highlighting) {
1215 1215
             $this->highlighting = $highlighting;
1216 1216
             return;
1217 1217
         }
Please login to merge, or discard this patch.