Role.php 475 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. *
  10. * For more details and usage information on Role, see the [guide article on security authorization](guide:security-authorization).
  11. *
  12. * @author Qiang Xue <qiang.xue@gmail.com>
  13. * @since 2.0
  14. */
  15. class Role extends Item
  16. {
  17. /**
  18. * @inheritdoc
  19. */
  20. public $type = self::TYPE_ROLE;
  21. }