public function User::getPassword in Drupal 9
Same name and namespace in other branches
- 8 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\EntityCode
public function getPassword() {
return $this
->get('pass')->value;
}