mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 09:51:37 +00:00
21 lines
307 B
PHP
21 lines
307 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class BackupFileStatus
|
|
{
|
|
const CREATED = 'created';
|
|
|
|
const CREATING = 'creating';
|
|
|
|
const FAILED = 'failed';
|
|
|
|
const DELETING = 'deleting';
|
|
|
|
const RESTORING = 'restoring';
|
|
|
|
const RESTORED = 'restored';
|
|
|
|
const RESTORE_FAILED = 'restore_failed';
|
|
}
|