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