Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class EmailAddressManager |
||
24 | { |
||
25 | private EntityManagerInterface $entityManager; |
||
26 | private UserRepository $userRepository; |
||
27 | |||
28 | public function __construct(EntityManagerInterface $entityManager, UserRepository $userRepository) |
||
32 | } |
||
33 | |||
34 | public function verifyNewEmailAddress(string $username, string $email, string $token): void |
||
52 |