mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-04 15:32:35 +00:00
* wip * wip * cleanup * notification channels * phpstan * services * remove server types * refactoring * refactoring
15 lines
213 B
PHP
15 lines
213 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class BackupStatus
|
|
{
|
|
const string RUNNING = 'running';
|
|
|
|
const string FAILED = 'failed';
|
|
|
|
const string DELETING = 'deleting';
|
|
|
|
const string STOPPED = 'stopped';
|
|
}
|