. // }}} /** * User role enum * * @category User * @package GNUsocial * * @author Hugo Sales * @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ namespace App\Core; use App\Util\Bitmap; class UserRoles extends Bitmap { public const ADMIN = 1; public const MODERATOR = 2; public const USER = 4; public const BOT = 8; public const PREFIX = 'ROLE_'; }