merged EmailVerifier
This commit is contained in:
parent
b1ce69cc47
commit
388432feb9
|
@ -7,7 +7,6 @@ use App\Form\ChangePasswordFormType;
|
||||||
use App\Form\RegistrationFormType;
|
use App\Form\RegistrationFormType;
|
||||||
use App\Form\ResetPasswordRequestFormType;
|
use App\Form\ResetPasswordRequestFormType;
|
||||||
use App\Repository\UserRepository;
|
use App\Repository\UserRepository;
|
||||||
use App\Security\EmailVerifier;
|
|
||||||
use Doctrine\ORM\EntityManagerInterface;
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Symfony\Bridge\Twig\Mime\TemplatedEmail;
|
use Symfony\Bridge\Twig\Mime\TemplatedEmail;
|
||||||
|
@ -32,8 +31,7 @@ class SecurityController extends AbstractController
|
||||||
{
|
{
|
||||||
use ResetPasswordControllerTrait;
|
use ResetPasswordControllerTrait;
|
||||||
|
|
||||||
public function __construct(private readonly EmailVerifier $emailVerifier,
|
public function __construct(private readonly ResetPasswordHelperInterface $resetPasswordHelper,
|
||||||
private readonly ResetPasswordHelperInterface $resetPasswordHelper,
|
|
||||||
private readonly EntityManagerInterface $entityManager,
|
private readonly EntityManagerInterface $entityManager,
|
||||||
private readonly VerifyEmailHelperInterface $verifyEmailHelper,
|
private readonly VerifyEmailHelperInterface $verifyEmailHelper,
|
||||||
private readonly MailerInterface $mailer,
|
private readonly MailerInterface $mailer,
|
||||||
|
|
Loading…
Reference in New Issue