mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 23:12:35 +00:00
* wip * wip * cleanup * notification channels * phpstan * services * remove server types * refactoring * refactoring
21 lines
356 B
PHP
21 lines
356 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class BackupFileStatus
|
|
{
|
|
const string CREATED = 'created';
|
|
|
|
const string CREATING = 'creating';
|
|
|
|
const string FAILED = 'failed';
|
|
|
|
const string DELETING = 'deleting';
|
|
|
|
const string RESTORING = 'restoring';
|
|
|
|
const string RESTORED = 'restored';
|
|
|
|
const string RESTORE_FAILED = 'restore_failed';
|
|
}
|