mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 18:31:36 +00:00
17 lines
255 B
PHP
17 lines
255 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class ServerStatus
|
|
{
|
|
const READY = 'ready';
|
|
|
|
const INSTALLING = 'installing';
|
|
|
|
const INSTALLATION_FAILED = 'installation_failed';
|
|
|
|
const DISCONNECTED = 'disconnected';
|
|
|
|
const UPDATING = 'updating';
|
|
}
|