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); }