mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 06:56:15 +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 DatabaseStatus
|
|
{
|
|
const string READY = 'ready';
|
|
|
|
const string CREATING = 'creating';
|
|
|
|
const string FAILED = 'failed';
|
|
|
|
const string DELETING = 'deleting';
|
|
}
|