ResourceInterface.php 404 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. *
  4. * Cube Framework $Id$ PMfKjyBdscdnXjDLN9axoNkp4JWvI9ZIpjOAOaPlOhQ=
  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 resource interface
  14. */
  15. namespace Cube\Permissions;
  16. interface ResourceInterface
  17. {
  18. public function getId();
  19. }