Scaffold InstantBankPay
This commit is contained in:
parent
d61d37fd61
commit
ecdbd8a584
1 changed files with 18 additions and 0 deletions
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…
Add table
Reference in a new issue