mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-06 02:24:04 +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;
|
|
}
|