mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Add paymentResponse
to MethodInterface.php
This commit is contained in:
parent
2856f36a86
commit
cd15861158
@ -11,6 +11,7 @@
|
|||||||
|
|
||||||
namespace App\PaymentDrivers\Common;
|
namespace App\PaymentDrivers\Common;
|
||||||
|
|
||||||
|
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
|
||||||
use App\Http\Requests\Request;
|
use App\Http\Requests\Request;
|
||||||
|
|
||||||
interface MethodInterface
|
interface MethodInterface
|
||||||
@ -35,4 +36,11 @@ interface MethodInterface
|
|||||||
* @param array $data
|
* @param array $data
|
||||||
*/
|
*/
|
||||||
public function paymentView(array $data);
|
public function paymentView(array $data);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Process the response from the payments page.
|
||||||
|
*
|
||||||
|
* @param PaymentResponseRequest $request
|
||||||
|
*/
|
||||||
|
public function paymentResponse(PaymentResponseRequest $request);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user