setup commands wip
This commit is contained in:
13
app/Enums/ServerStatus.php
Normal file
13
app/Enums/ServerStatus.php
Normal 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';
|
||||
}
|
||||
Reference in New Issue
Block a user