1 | <?php |
||
13 | final class AddressAction |
||
14 | { |
||
15 | /** |
||
16 | * @var ViewHandlerInterface |
||
17 | */ |
||
18 | private $viewHandler; |
||
19 | |||
20 | /** |
||
21 | * @var CommandBus |
||
22 | */ |
||
23 | private $bus; |
||
24 | |||
25 | /** |
||
26 | * @param ViewHandlerInterface $viewHandler |
||
27 | * @param CommandBus $bus |
||
28 | */ |
||
29 | public function __construct(ViewHandlerInterface $viewHandler, CommandBus $bus) |
||
34 | |||
35 | /** |
||
36 | * @param Request $request |
||
37 | * |
||
38 | * @return Response |
||
39 | */ |
||
40 | public function __invoke(Request $request) |
||
54 | } |
||
55 |