Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
23 | class EmailAddressManager |
||
24 | { |
||
25 | private EntityManagerInterface $entityManager; |
||
26 | private UserRepository $userRepository; |
||
27 | |||
28 | public function __construct(EntityManagerInterface $entityManager, UserRepository $userRepository) |
||
29 | { |
||
30 | $this->entityManager = $entityManager; |
||
31 | $this->userRepository = $userRepository; |
||
32 | } |
||
33 | |||
34 | public function verifyNewEmailAddress(string $username, string $email, string $token): void |
||
46 | } |
||
47 | } |
||
48 |