This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/UserPerms.php

18 lines
272 B
PHP
Raw Normal View History

<?php
/**
* Holds the user permission handler.
* @package Sakura
*/
namespace Sakura;
/**
* User permission handler.
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
2016-12-08 21:13:55 +00:00
class UserPerms extends PermissionHandler
{
2016-12-08 21:13:55 +00:00
public const TABLE = 'perms';
}