Completed
Pull Request — 4.3 (#149)
by Dorian
13:16
created
src/Mouf/Database/TDBM/QueryFactory/FindObjectsFromRawSqlQueryFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
             throw new TDBMException('Missing tables '.implode(', ', $missingTables).' in SELECT statement');
180 180
         }
181 181
 
182
-        for ($i = 0; $i < count($formattedSelect) - 1; $i++) {
182
+        for ($i = 0; $i<count($formattedSelect)-1; $i++) {
183 183
             $formattedSelect[$i]['delim'] = ',';
184 184
         }
185 185
         return [$formattedSelect, $columnDescritors];
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
             'base_expr' => 'COUNT',
212 212
             'sub_tree' => $parsedSql['SELECT'],
213 213
             'delim' => false,
214
-        ]];;
214
+        ]]; ;
215 215
     }
216 216
 
217 217
     private function generateGroupedSqlCount($parsedSql)
Please login to merge, or discard this patch.