9 lines
107 B

<?php
namespace core\access;
class Rbac
{
const ROLE_USER = 'user';
const ROLE_ADMIN = 'admin';
}