| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class EmailVerifier |
||
| 14 | { |
||
| 15 | private VerifyEmailHelperInterface $verifyEmailHelper; |
||
| 16 | private EntityManagerInterface $entityManager; |
||
| 17 | |||
| 18 | public function __construct(VerifyEmailHelperInterface $helper, EntityManagerInterface $manager) |
||
| 19 | { |
||
| 20 | $this->verifyEmailHelper = $helper; |
||
| 21 | $this->entityManager = $manager; |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @throws VerifyEmailExceptionInterface |
||
| 26 | */ |
||
| 27 | public function handleEmailConfirmation(Request $request, UserInterface $user): void |
||
| 35 | } |
||
| 36 | } |
||
| 37 |