Passed
Pull Request — master (#1668)
by Timo
04:12
created
Classes/System/Data/AbstractCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
      */
148 148
     public function offsetSet($offset, $value)
149 149
     {
150
-        if($offset === null) {
150
+        if ($offset === null) {
151 151
             $this->data[] = $value;
152 152
             return;
153 153
         }
Please login to merge, or discard this patch.
Classes/Domain/Search/ResultSet/Result/Parser/DefaultResultParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         }
49 49
 
50 50
         $documents = $parsedData->response->docs;
51
-        if(!$useRawDocuments) {
51
+        if (!$useRawDocuments) {
52 52
             $documents = $this->applyHtmlSpecialCharsOnAllFields($documents);
53 53
         }
54 54
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     public function canParse(\Apache_Solr_Response $response, SearchResultSet $resultSet)
69 69
     {
70 70
         // This parsers should not be used when grouping is enabled
71
-        if($this->typoScriptConfiguration->getSearchGrouping())
71
+        if ($this->typoScriptConfiguration->getSearchGrouping())
72 72
         {
73 73
             return false;
74 74
         }
Please login to merge, or discard this patch.