12 lines
185 B
PHP
12 lines
185 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum UserRole: string
|
|
{
|
|
case ADMINISTRATOR = 'admin';
|
|
case MODERATOR = 'moderator';
|
|
case SUPPORTER = 'supporter';
|
|
case BANNED = 'banned';
|
|
}
|