done. going to bed now.

This commit is contained in:
2025-05-05 19:27:09 -04:00
commit f7567db1b9
40 changed files with 6775 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
namespace Siteworxpro\App\Traefik;
enum EntityEnum
{
case ROUTER;
case SERVICE;
case MIDDLEWARE;
public function getValue(): string
{
return match ($this) {
self::ROUTER => 'routers',
self::SERVICE => 'services',
self::MIDDLEWARE => 'middlewares',
};
}
}