1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 19:14:04 +00:00

wip Debuggable trait

This commit is contained in:
Samuel Štancl 2022-07-28 15:14:29 +02:00
parent f9c9d8615f
commit be13160133
5 changed files with 163 additions and 1 deletions

10
src/Enums/LogMode.php Normal file
View file

@ -0,0 +1,10 @@
<?php
namespace Stancl\Tenancy\Enums;
enum LogMode
{
case NONE;
case SILENT;
case INSTANT;
}