Exemplo n.º 1
0
 /**
  * @param User $user
  * @param $password
  * @return bool
  */
 public function changeUserPassword(User $user, $password)
 {
     $user->hash = $this->hasher->hashPassword($password);
     return $user->save();
 }