123456789101112131415161718 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Authorization\Model\Acl\Role;
- /**
- * Acl Group model
- */
- class Group extends \Magento\Authorization\Model\Acl\Role\Generic
- {
- /**
- * All the group roles are prepended by G
- *
- */
- const ROLE_TYPE = 'G';
- }
|