Esempio n. 1
0
 /**
  * Create a hash for the given password.
  *
  * @param string $password
  *
  * @return string Password hash.
  */
 public function createPasswordHash($password)
 {
     return $this->encoderProviderInstance->createPasswordHash($password);
 }