mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
58 lines
1.1 KiB
PHP
58 lines
1.1 KiB
PHP
|
<?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\Eway;
|
||
|
|
||
|
use App\Exceptions\PaymentFailed;
|
||
|
use App\Jobs\Mail\PaymentFailureMailer;
|
||
|
use App\Jobs\Util\SystemLogger;
|
||
|
use App\Models\ClientGatewayToken;
|
||
|
use App\Models\GatewayType;
|
||
|
use App\Models\Payment;
|
||
|
use App\Models\PaymentHash;
|
||
|
use App\Models\PaymentType;
|
||
|
use App\Models\SystemLog;
|
||
|
use App\PaymentDrivers\EwayPaymentDriver;
|
||
|
use Illuminate\Http\Request;
|
||
|
use Illuminate\Support\Facades\Cache;
|
||
|
use Illuminate\Support\Str;
|
||
|
|
||
|
class CreditCard
|
||
|
{
|
||
|
|
||
|
public $eway;
|
||
|
|
||
|
public function __construct(EwayPaymentDriver $eway)
|
||
|
{
|
||
|
$this->eway = $eway;
|
||
|
}
|
||
|
|
||
|
public function authorizeView($data)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function authorizeRequest($request)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function paymentView($data)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function processPaymentResponse($request)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|