mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-04 23:42:34 +00:00
* wip * wip * cleanup * notification channels * phpstan * services * remove server types * refactoring * refactoring
23 lines
381 B
PHP
23 lines
381 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class WorkerStatus
|
|
{
|
|
const string RUNNING = 'running';
|
|
|
|
const string CREATING = 'creating';
|
|
|
|
const string DELETING = 'deleting';
|
|
|
|
const string FAILED = 'failed';
|
|
|
|
const string STARTING = 'starting';
|
|
|
|
const string STOPPING = 'stopping';
|
|
|
|
const string RESTARTING = 'restarting';
|
|
|
|
const string STOPPED = 'stopped';
|
|
}
|