Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 10 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
41 | public function __invoke(Request $request) |
||
42 | { |
||
43 | $this->bus->handle(new ChooseShippingMethod( |
||
44 | $request->attributes->get('token'), |
||
45 | $request->attributes->get('shippingId'), |
||
46 | $request->request->get('method') |
||
47 | )); |
||
48 | |||
49 | return $this->viewHandler->handle(View::create(null, Response::HTTP_NO_CONTENT)); |
||
50 | } |
||
51 | } |
||
52 |