You are here

protected function User::getRoleStorage in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::getRoleStorage()

Returns the role storage object.

Return value

\Drupal\user\RoleStorageInterface The role storage object.

File

core/modules/user/src/Entity/User.php, line 557

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

protected function getRoleStorage() {
  return \Drupal::entityTypeManager()
    ->getStorage('user_role');
}