Role.php 474 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace yii\rbac;
  8. /**
  9. * For more details and usage information on Role, see the [guide article on security authorization](guide:security-authorization).
  10. *
  11. * @author Qiang Xue <qiang.xue@gmail.com>
  12. * @since 2.0
  13. */
  14. class Role extends Item
  15. {
  16. /**
  17. * {@inheritdoc}
  18. */
  19. public $type = self::TYPE_ROLE;
  20. }