setup commands wip

This commit is contained in:
2025-03-27 13:28:48 +00:00
parent 2c881c9722
commit 2f5536342b
4 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Enums;
enum ServerStatus: string
{
case PENDING = 'pending';
case PROVISIONING = 'provisioning';
case UPDATING = 'updating';
case ACTIVE = 'active';
case DELETING = 'deleting';
case DELETED = 'deleted';
}