From 4a85f45e3ad0314688a8af9a8635b9de208e1d00 Mon Sep 17 00:00:00 2001 From: tracer Date: Sun, 23 Oct 2022 12:41:14 +0200 Subject: [PATCH] initial commit --- src/Enums/UserAuth.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/Enums/UserAuth.php diff --git a/src/Enums/UserAuth.php b/src/Enums/UserAuth.php new file mode 100644 index 0000000..604a7d4 --- /dev/null +++ b/src/Enums/UserAuth.php @@ -0,0 +1,17 @@ + + * + * 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; +} \ No newline at end of file