1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/PaymentDrivers/GoCardless/InstantBankPay.php

19 lines
482 B
PHP
Raw Normal View History

2021-11-11 15:52:32 +01:00
<?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) { }
}