mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Add gateway initialization
This commit is contained in:
parent
58d2e4b174
commit
6cc30a2454
@ -15,9 +15,17 @@ namespace App\PaymentDrivers\Stripe;
|
|||||||
use App\Http\Requests\Request;
|
use App\Http\Requests\Request;
|
||||||
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
|
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
|
||||||
use App\PaymentDrivers\Common\MethodInterface;
|
use App\PaymentDrivers\Common\MethodInterface;
|
||||||
|
use App\PaymentDrivers\StripePaymentDriver;
|
||||||
|
|
||||||
class SEPA implements MethodInterface
|
class SEPA implements MethodInterface
|
||||||
{
|
{
|
||||||
|
/** @var StripePaymentDriver */
|
||||||
|
public StripePaymentDriver $stripe;
|
||||||
|
|
||||||
|
public function __construct(StripePaymentDriver $stripe)
|
||||||
|
{
|
||||||
|
$this->stripe = $stripe;
|
||||||
|
}
|
||||||
public function authorizeView(array $data) { }
|
public function authorizeView(array $data) { }
|
||||||
|
|
||||||
public function authorizeResponse(Request $request) { }
|
public function authorizeResponse(Request $request) { }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user