1 | <?php |
||
21 | final class ResendVerificationTokenAction |
||
22 | { |
||
23 | /** |
||
24 | * @var ViewHandlerInterface |
||
25 | */ |
||
26 | private $viewHandler; |
||
27 | |||
28 | /** |
||
29 | * @var CommandBus |
||
30 | */ |
||
31 | private $bus; |
||
32 | |||
33 | /** |
||
34 | * @var ValidatorInterface |
||
35 | */ |
||
36 | private $validator; |
||
37 | |||
38 | /** |
||
39 | * @var ValidationErrorViewFactoryInterface |
||
40 | */ |
||
41 | private $validationErrorViewFactory; |
||
42 | |||
43 | /** |
||
44 | * @param ViewHandlerInterface $viewHandler |
||
45 | * @param CommandBus $bus |
||
46 | * @param ValidatorInterface $validator |
||
47 | * @param ValidationErrorViewFactoryInterface $validationErrorViewFactory |
||
48 | */ |
||
49 | public function __construct( |
||
60 | |||
61 | /** |
||
62 | * @param Request $request |
||
63 | * |
||
64 | * @return Response |
||
65 | */ |
||
66 | public function __invoke(Request $request) |
||
80 | } |
||
81 |