Same name and namespace in other branches
  1. 8.9.x core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::setWeight()
  2. 9 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::setWeight()

Sets the weight to the given value.

Parameters

int $weight: The desired weight.

Return value

$this

Overrides RoleInterface::setWeight

File

core/modules/user/src/Entity/Role.php, line 111

Class

Role
Defines the user role entity class.

Namespace

Drupal\user\Entity

Code

public function setWeight($weight) {
  $this
    ->set('weight', $weight);
  return $this;
}