mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 04:23:59 +00:00
20 lines
280 B
PHP
20 lines
280 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
|
|
final class Roles
|
|
{
|
|
public const USER = 0;
|
|
|
|
public const ADMIN = 1;
|
|
|
|
public const SUPER_ADMIN = 2;
|
|
|
|
public const ROLES_NAMES = [
|
|
0 => 'User',
|
|
1 => 'Admin',
|
|
2 => 'Super Admin',
|
|
];
|
|
|
|
} |