Initialize MollieApiClient
This commit is contained in:
parent
bb2d920e04
commit
00a5c9882c
1 changed files with 10 additions and 0 deletions
|
|
@ -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 Bancontact 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) { }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue