1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 04:34:03 +00:00
tenancy/src/Enums/RouteMode.php
lukinovec e3b59ae2b5
Improve file structure (#5)
* Add Enums and Overrides folders

* Fix code style (php-cs-fixer)

---------

Co-authored-by: PHP CS Fixer <phpcsfixer@example.com>
2023-08-03 17:51:53 +02:00

12 lines
140 B
PHP

<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Enums;
enum RouteMode
{
case TENANT;
case CENTRAL;
case UNIVERSAL;
}