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