mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 15:02:34 +00:00
* wip * wip * cleanup * notification channels * phpstan * services * remove server types * refactoring * refactoring
17 lines
290 B
PHP
17 lines
290 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class ServerStatus
|
|
{
|
|
const string READY = 'ready';
|
|
|
|
const string INSTALLING = 'installing';
|
|
|
|
const string INSTALLATION_FAILED = 'installation_failed';
|
|
|
|
const string DISCONNECTED = 'disconnected';
|
|
|
|
const string UPDATING = 'updating';
|
|
}
|