Role.php in Lightning Core 8.3
Same filename and directory in other branches
Namespace
Drupal\lightning_core\EntityFile
src/Entity/Role.phpView source
<?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;
}