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