Add paymentResponse to MethodInterface.php
This commit is contained in:
parent
2856f36a86
commit
cd15861158
1 changed files with 8 additions and 0 deletions
|
|
@ -11,6 +11,7 @@
|
|||
|
||||
namespace App\PaymentDrivers\Common;
|
||||
|
||||
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
|
||||
use App\Http\Requests\Request;
|
||||
|
||||
interface MethodInterface
|
||||
|
|
@ -35,4 +36,11 @@ interface MethodInterface
|
|||
* @param array $data
|
||||
*/
|
||||
public function paymentView(array $data);
|
||||
|
||||
/**
|
||||
* Process the response from the payments page.
|
||||
*
|
||||
* @param PaymentResponseRequest $request
|
||||
*/
|
||||
public function paymentResponse(PaymentResponseRequest $request);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue