public Role::setWeight($weight)
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 104
 
Class
- Role
 - Defines the user role entity class.
 
Namespace
Drupal\user\Entity
Code
public function setWeight($weight) {
  $this->set('weight', $weight);
  return $this;
}
Please login to continue.