mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 11:24:28 -04:00
Scaffold InstantBankPay
This commit is contained in:
parent
d61d37fd61
commit
ecdbd8a584
18
app/PaymentDrivers/GoCardless/InstantBankPay.php
Normal file
18
app/PaymentDrivers/GoCardless/InstantBankPay.php
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\PaymentDrivers\GoCardless;
|
||||||
|
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use App\PaymentDrivers\Common\MethodInterface;
|
||||||
|
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
|
||||||
|
|
||||||
|
class InstantBankPay implements MethodInterface
|
||||||
|
{
|
||||||
|
public function authorizeView(array $data) { }
|
||||||
|
|
||||||
|
public function authorizeResponse(Request $request) { }
|
||||||
|
|
||||||
|
public function paymentView(array $data) { }
|
||||||
|
|
||||||
|
public function paymentResponse(PaymentResponseRequest $request) { }
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user