1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/PaymentDrivers/Mollie/IDEAL.php

28 lines
732 B
PHP
Raw Normal View History

2021-10-04 15:41:15 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\PaymentDrivers\Mollie;
use App\Http\Requests\Request;
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
use App\PaymentDrivers\Common\MethodInterface;
class IDEAL implements MethodInterface
{
public function authorizeView(array $data) { }
public function authorizeResponse(Request $request) { }
public function paymentView(array $data) { }
public function paymentResponse(PaymentResponseRequest $request) { }
}