Files
coolify/docs/v5/archive/app/Enums/V5/ServerStatus.php.txt
T
Andras Bacsai 76030a30d4 chore(v5): archive V5 implementation and remove runtime integration
Move V5 source, migrations, UI, scripts, and tests into documentation, then remove V5 routes, models, jobs, configuration, dependencies, and application hooks.
2026-08-15 19:13:30 +02:00

16 lines
280 B
Plaintext

<?php
namespace App\Enums\V5;
/**
* Lifecycle states persisted on `v5_servers.status`.
*/
enum ServerStatus: string
{
case Added = 'added';
case Installed = 'installed';
case Failed = 'failed';
case Unreachable = 'unreachable';
case Unknown = 'unknown';
}