diff --git a/app/PaymentDrivers/Mollie/KBC.php b/app/PaymentDrivers/Mollie/KBC.php index 24b0abcaa540..4aa8b1fb0ef6 100644 --- a/app/PaymentDrivers/Mollie/KBC.php +++ b/app/PaymentDrivers/Mollie/KBC.php @@ -15,9 +15,19 @@ namespace App\PaymentDrivers\Mollie; use App\Http\Requests\Request; use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest; use App\PaymentDrivers\Common\MethodInterface; +use App\PaymentDrivers\MolliePaymentDriver; class KBC implements MethodInterface { + protected MolliePaymentDriver $mollie; + + public function __construct(MolliePaymentDriver $mollie) + { + $this->mollie = $mollie; + + $this->mollie->init(); + } + public function authorizeView(array $data) { } public function authorizeResponse(Request $request) { }