RoleInterface.php 395 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. *
  4. * Cube Framework $Id$ 6+AcsFKWd7QPnQUnIi2EpRhHcwZpVzQzuHWpAFmvT4A=
  5. *
  6. * @link http://codecu.be/framework
  7. * @copyright Copyright (c) 2014 CodeCube SRL
  8. * @license http://codecu.be/framework/license Commercial License
  9. *
  10. * @version 1.0
  11. */
  12. /**
  13. * acl role interface
  14. */
  15. namespace Cube\Permissions;
  16. interface RoleInterface
  17. {
  18. public function getId();
  19. }