Files
public
src
Controller
Entity
Enums
UserAuth.php
Repository
Service
bootstrap.php
templates
.gitinore
LICENSE
README.md
config.json.sample
addressbook/src/Enums/UserAuth.php
2022-10-23 12:41:14 +02:00

17 lines
307 B
PHP

<?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;
}