@@ -188,7 +188,7 @@ discard block |
||
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 |
||
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 | ); |