Group.php 347 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Authorization\Model\Acl\Role;
  7. /**
  8. * Acl Group model
  9. */
  10. class Group extends \Magento\Authorization\Model\Acl\Role\Generic
  11. {
  12. /**
  13. * All the group roles are prepended by G
  14. *
  15. */
  16. const ROLE_TYPE = 'G';
  17. }