| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function successAction(Request $request): Response |
||
| 27 | { |
||
| 28 | $payload = $this->getFactory()->getUtilEncodingService()->decodeJson($request->getContent(), true); |
||
| 29 | |||
| 30 | $this->getFactory()->createResponseProcessor()->processSuccessResponse($payload); |
||
|
|
|||
| 31 | |||
| 32 | return $this->jsonResponse([ |
||
| 33 | 'redirectUrl' => $this->getApplication()->path(CheckoutPageControllerProvider::CHECKOUT_SUMMARY), |
||
| 34 | ]); |
||
| 51 |