JobBackup
2 years ago
JobRestore
2 years ago
CleanupBakTablesTask.php
2 years ago
CleanupTmpFilesTask.php
2 years ago
CleanupTmpTablesTask.php
2 years ago
CleanupBakTablesTask.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Backup\Task\Tasks; |
| 4 | |
| 5 | use WPStaging\Backup\Ajax\Restore\PrepareRestore; |
| 6 | |
| 7 | class CleanupBakTablesTask extends CleanupTmpTablesTask |
| 8 | { |
| 9 | /** |
| 10 | * Can be either wpstgtmp_ or wpstgbak_ |
| 11 | * |
| 12 | * @return string |
| 13 | */ |
| 14 | public static function getTempTableType(): string |
| 15 | { |
| 16 | return PrepareRestore::TMP_DATABASE_PREFIX_TO_DROP; |
| 17 | } |
| 18 | } |
| 19 |