You are here

public function User::getPassword in Drupal 8

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

Returns the hashed password.

Return value

string The hashed password.

Overrides UserInterface::getPassword

File

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

Class

User
Defines the user entity class.

Namespace

Drupal\user\Entity

Code

public function getPassword() {
  return $this
    ->get('pass')->value;
}