mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
Scaffold ACH class
This commit is contained in:
parent
5112349306
commit
f179b615c1
36
app/PaymentDrivers/GoCardless/ACH.php
Normal file
36
app/PaymentDrivers/GoCardless/ACH.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Invoice Ninja (https://invoiceninja.com).
|
||||
*
|
||||
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||||
*
|
||||
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
||||
*
|
||||
* @license https://opensource.org/licenses/AAL
|
||||
*/
|
||||
|
||||
namespace App\PaymentDrivers\GoCardless;
|
||||
|
||||
use App\Http\Requests\Request;
|
||||
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
|
||||
use App\PaymentDrivers\Common\MethodInterface;
|
||||
use App\PaymentDrivers\GoCardlessPaymentDriver;
|
||||
|
||||
class ACH implements MethodInterface
|
||||
{
|
||||
public GoCardlessPaymentDriver $go_cardless;
|
||||
|
||||
public function __construct(GoCardlessPaymentDriver $go_cardless)
|
||||
{
|
||||
$this->go_cardless = $go_cardless;
|
||||
}
|
||||
|
||||
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