Files
keystone/app/Enums/ServiceStatus.php

13 lines
253 B
PHP

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