1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00

Add paymentView to MethodInterface

This commit is contained in:
Benjamin Beganović 2021-08-26 15:46:17 +02:00
parent 29d56f69d5
commit 016e8033fb

View File

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