mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-04 07:22:34 +00:00
* wip * wip * cleanup * notification channels * phpstan * services * remove server types * refactoring * refactoring
31 lines
578 B
PHP
31 lines
578 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class ServiceStatus
|
|
{
|
|
const string READY = 'ready';
|
|
|
|
const string INSTALLING = 'installing';
|
|
|
|
const string INSTALLATION_FAILED = 'installation_failed';
|
|
|
|
const string UNINSTALLING = 'uninstalling';
|
|
|
|
const string FAILED = 'failed';
|
|
|
|
const string STARTING = 'starting';
|
|
|
|
const string STOPPING = 'stopping';
|
|
|
|
const string RESTARTING = 'restarting';
|
|
|
|
const string STOPPED = 'stopped';
|
|
|
|
const string ENABLING = 'enabling';
|
|
|
|
const string DISABLING = 'disabling';
|
|
|
|
const string DISABLED = 'disabled';
|
|
}
|