1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 12:24:04 +00:00

Make RouteMode a backed enum

This commit is contained in:
Gyula Voros 2025-05-26 11:24:29 +02:00
parent 588d1fcc0d
commit f8daccc3b3

View file

@ -4,9 +4,9 @@ declare(strict_types=1);
namespace Stancl\Tenancy\Enums;
enum RouteMode
enum RouteMode: string
{
case TENANT;
case CENTRAL;
case UNIVERSAL;
case TENANT = 'tenant';
case CENTRAL = 'central';
case UNIVERSAL = 'universal';
}