mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 12:54:05 +00:00
12 lines
133 B
PHP
12 lines
133 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Enums;
|
|
|
|
enum LogMode
|
|
{
|
|
case NONE;
|
|
case SILENT;
|
|
case INSTANT;
|
|
}
|