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