1234567891011121314151617181920212223 |
- <?php
- /**
- *
- * Cube Framework $Id$ 6+AcsFKWd7QPnQUnIi2EpRhHcwZpVzQzuHWpAFmvT4A=
- *
- * @link http://codecu.be/framework
- * @copyright Copyright (c) 2014 CodeCube SRL
- * @license http://codecu.be/framework/license Commercial License
- *
- * @version 1.0
- */
- /**
- * acl role interface
- */
- namespace Cube\Permissions;
- interface RoleInterface
- {
- public function getId();
- }
|