|
@@ -4,7 +4,7 @@ namespace App\Service;
|
|
|
|
|
|
use App\Entity\User;
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
|
-use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
|
|
|
+use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
|
|
|
use Symfony\Component\Security\Csrf\TokenGenerator\TokenGeneratorInterface;
|
|
|
|
|
|
/**
|
|
@@ -19,7 +19,7 @@ class UserManager
|
|
|
* UserManager constructor.
|
|
|
* @param EntityManagerInterface $em
|
|
|
*/
|
|
|
- public function __construct(EntityManagerInterface $em, UserPasswordEncoderInterface $passwordEncoder, TokenGeneratorInterface $tokenGenerator)
|
|
|
+ public function __construct(EntityManagerInterface $em, UserPasswordHasherInterface $passwordEncoder, TokenGeneratorInterface $tokenGenerator)
|
|
|
{
|
|
|
$this->em = $em;
|
|
|
$this->passwordEncoder = $passwordEncoder;
|
|
@@ -54,7 +54,7 @@ class UserManager
|
|
|
}
|
|
|
public function enregistrerUser (User $user)
|
|
|
{
|
|
|
- $encoded = $this->passwordEncoder->encodePassword($user, $user->getPassword());
|
|
|
+ $encoded = $this->passwordEncoder->hashPassword($user, $user->getPassword());
|
|
|
$user->setPassword($encoded);
|
|
|
$this->generateToken($user);
|
|
|
$this->em->persist($user);
|