mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01: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…
Reference in New Issue
Block a user