Files
keystone/app/Enums/ServiceStatus.php

11 lines
175 B
PHP

<?php
namespace App\Enums;
enum ServiceStatus: string
{
case RUNNING = 'running';
case STOPPED = 'stopped';
case ERROR = 'error';
case UNKNOWN = 'unknown';
}