1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 13:42:49 +01:00
invoiceninja/app/PaymentDrivers/Common/MethodInterface.php

32 lines
697 B
PHP
Raw Normal View History

<?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://www.elastic.co/licensing/elastic-license
*/
namespace App\PaymentDrivers\Common;
use App\Http\Requests\Request;
interface MethodInterface
{
/**
* Authorization page for the gateway method.
*
* @param array $data
*/
public function authorizeView(array $data);
/**
* Process the response from the authorization page.
*
* @param Request $request
*/
public function authorizeResponse(Request $request);
}