Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | public function addShipmentAction(Request $request): Response |
||
43 | { |
||
44 | $idShipmentMethod = $request->get(CheckoutShipmentForm::FORM_NAME)[CheckoutShipmentForm::FIELD_ID_SHIPMENT_METHOD]; |
||
45 | |||
46 | $this->getFactory()->createQuoteExpander()->expandQuoteWithShipmentMethod($request, $idShipmentMethod); |
||
47 | |||
48 | return $this->redirectResponseInternal(CheckoutPageControllerProvider::CHECKOUT_SUMMARY); |
||
49 | } |
||
51 |