Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | #[AsController] |
||
17 | class ConfirmPassword extends AbstractController |
||
18 | { |
||
19 | public function __construct( |
||
20 | private readonly EntityManagerInterface $em, |
||
21 | private readonly SecurityHistoryManager $securityHistoryManager |
||
22 | ) { |
||
23 | } |
||
24 | |||
25 | |||
26 | /** |
||
27 | * @throws Exception |
||
28 | */ |
||
29 | public function __invoke(Request $request): JsonResponse |
||
52 | } |
||
53 | } |
||
54 |