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

Sets the username of this account.

Parameters

string $username: The new user name.

Return value

$this The called user entity.

Overrides UserInterface::setUsername

File

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

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public function setUsername($username) {
  $this
    ->set('name', $username);
  return $this;
}