initial commit

This commit is contained in:
tracer 2022-10-23 12:41:14 +02:00
parent 9a485b5424
commit 4a85f45e3a
1 changed files with 17 additions and 0 deletions

17
src/Enums/UserAuth.php Normal file
View File

@ -0,0 +1,17 @@
<?php
/*
* Copyright (c) 2022. Micha Espey <tracer@24unix.net>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
*/
namespace App\Enums;
enum UserAuth
{
case AUTH_ANONYMOUS;
case AUTH_USER;
case AUTH_ADMIN;
}