From 016e8033fb701757b79683e163ff435eac232461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Thu, 26 Aug 2021 15:46:17 +0200 Subject: [PATCH] Add `paymentView` to `MethodInterface` --- app/PaymentDrivers/Common/MethodInterface.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/PaymentDrivers/Common/MethodInterface.php b/app/PaymentDrivers/Common/MethodInterface.php index 41ce99ac7fad..6e68b82dcf30 100644 --- a/app/PaymentDrivers/Common/MethodInterface.php +++ b/app/PaymentDrivers/Common/MethodInterface.php @@ -28,4 +28,11 @@ interface MethodInterface * @param Request $request */ public function authorizeResponse(Request $request); + + /** + * Payment page for the gateway method. + * + * @param array $data + */ + public function paymentView(array $data); }