enum case consistency, wip creating service
This commit is contained in:
16
app/Enums/ServiceType.php
Normal file
16
app/Enums/ServiceType.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum ServiceType: string {
|
||||
case FRANKENPHP = 'frankenphp';
|
||||
case PHP_FPM = 'php-fpm';
|
||||
case POSTGRES = 'postgres';
|
||||
case CADDY = 'caddy';
|
||||
case VALKEY = 'valkey';
|
||||
|
||||
// future?
|
||||
case MYSQL = 'mysql';
|
||||
case NGINX = 'nginx';
|
||||
case REDIS = 'redis';
|
||||
}
|
||||
Reference in New Issue
Block a user