X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/223fbe69be8134a89e10564e439d8e2135a69d23..f9a05d2199dbec989e7d53f5c983e601016846c4:/Repository/UserRepository.php diff --git a/Repository/UserRepository.php b/Repository/UserRepository.php index d75e229..da5952f 100644 --- a/Repository/UserRepository.php +++ b/Repository/UserRepository.php @@ -13,11 +13,13 @@ namespace Rapsys\UserBundle\Repository; use Doctrine\ORM\Query\ResultSetMapping; use Symfony\Component\Routing\Generator\UrlGeneratorInterface; +use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface; +use Symfony\Component\Security\Core\User\PasswordUpgraderInterface; /** * UserRepository */ -class UserRepository extends EntityRepository { +class UserRepository extends EntityRepository implements PasswordUpgraderInterface { /** * Find user count as int * @@ -142,4 +144,15 @@ SQL; //Send result return $ret; } + + /** + * {@inheritdoc} + */ + public function upgradePassword(PasswordAuthenticatedUserInterface $user, string $hash): void { + //Set new hashed password + $user->setPassword($hash); + + //Flush data to database + $this->getEntityManager()->flush(); + } }