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