Passed
Push — master ( caa518...c99bae )
by Nicolaas
10:05
created
src/CleanUp.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
                 continue;
186 186
             }
187 187
             $this->data[$tableName]['SizeBefore'] = $this->database->getTableSizeInMegaBytes($tableName);
188
-            if ($this->selectedTables && ! in_array($tableName, $this->selectedTableList, true)) {
188
+            if ($this->selectedTables && !in_array($tableName, $this->selectedTableList, true)) {
189 189
                 $this->data[$tableName]['Actions'][] = 'Skipped because it is not a selected table.';
190 190
 
191 191
                 continue;
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
         $totalSizeAfter = 0;
365 365
         usort(
366 366
             $this->data,
367
-            function ($a, $b) {
367
+            function($a, $b) {
368 368
                 return $b['SizeBefore'] <=> $a['SizeBefore'];
369 369
             }
370 370
         );
Please login to merge, or discard this patch.