wxt-8.x-3.011/modules/custom/wxt_core/src/Entity/Role.php
modules/custom/wxt_core/src/Entity/Role.php
<?php
namespace Drupal\wxt_core\Entity;
use Drupal\Core\Entity\EntityDescriptionInterface;
use Drupal\wxt_core\ConfigEntityDescriptionTrait;
use Drupal\user\Entity\Role as BaseRole;
/**
* Adds description support to user roles.
*
* Leveraged from code provided by Acquia for the Lightning distribution.
*/
class Role extends BaseRole implements EntityDescriptionInterface {
use ConfigEntityDescriptionTrait;
}
