mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 10:14:04 +00:00
Make RouteMode a backed enum
This commit is contained in:
parent
588d1fcc0d
commit
f8daccc3b3
1 changed files with 4 additions and 4 deletions
|
|
@ -4,9 +4,9 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace Stancl\Tenancy\Enums;
|
namespace Stancl\Tenancy\Enums;
|
||||||
|
|
||||||
enum RouteMode
|
enum RouteMode: string
|
||||||
{
|
{
|
||||||
case TENANT;
|
case TENANT = 'tenant';
|
||||||
case CENTRAL;
|
case CENTRAL = 'central';
|
||||||
case UNIVERSAL;
|
case UNIVERSAL = 'universal';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue