mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Initialize MollieApiClient
This commit is contained in:
parent
49f60ce7ba
commit
046e467332
@ -15,9 +15,19 @@ namespace App\PaymentDrivers\Mollie;
|
|||||||
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\MolliePaymentDriver;
|
||||||
|
|
||||||
class IDEAL implements MethodInterface
|
class IDEAL implements MethodInterface
|
||||||
{
|
{
|
||||||
|
protected MolliePaymentDriver $mollie;
|
||||||
|
|
||||||
|
public function __construct(MolliePaymentDriver $mollie)
|
||||||
|
{
|
||||||
|
$this->mollie = $mollie;
|
||||||
|
|
||||||
|
$this->mollie->init();
|
||||||
|
}
|
||||||
|
|
||||||
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