lightning_core-8.x-5.3/src/Entity/Role.php
src/Entity/Role.php
<?php
namespace Drupal\lightning_core\Entity;
use Drupal\Core\Entity\EntityDescriptionInterface;
use Drupal\lightning_core\ConfigEntityDescriptionTrait;
use Drupal\user\Entity\Role as BaseRole;
/**
* Adds description support to user roles.
*/
class Role extends BaseRole implements EntityDescriptionInterface {
use ConfigEntityDescriptionTrait;
}
