mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Initialize MollieApiClient
This commit is contained in:
parent
bb2d920e04
commit
00a5c9882c
@ -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 Bancontact implements MethodInterface
|
class Bancontact 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…
Reference in New Issue
Block a user