mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-07 13:14:37 -04:00
Scaffold iDEAL
This commit is contained in:
parent
616e783f9d
commit
a1892c908b
28
app/PaymentDrivers/Mollie/IDEAL.php
Normal file
28
app/PaymentDrivers/Mollie/IDEAL.php
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<?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) { }
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user