mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
67 lines
1.4 KiB
PHP
67 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com)
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://opensource.org/licenses/AAL
|
||
|
*/
|
||
|
|
||
|
namespace App\PaymentDrivers;
|
||
|
|
||
|
use App\Models\Client;
|
||
|
use App\Models\CompanyGateway;
|
||
|
use App\PaymentDrivers\AbstractPaymentDriver;
|
||
|
use App\Utils\Traits\MakesHash;
|
||
|
use App\Utils\Traits\SystemLogTrait;
|
||
|
use Omnipay\Omnipay;
|
||
|
|
||
|
/**
|
||
|
* Class BaseDriver
|
||
|
* @package App\PaymentDrivers
|
||
|
*
|
||
|
*/
|
||
|
class BaseDriver implements AbstractPaymentDriver
|
||
|
{
|
||
|
use SystemLogTrait;
|
||
|
use MakesHash;
|
||
|
|
||
|
/* The company gateway instance*/
|
||
|
public $company_gateway;
|
||
|
|
||
|
/* The Gateway Driver instance*/
|
||
|
protected $gateway;
|
||
|
|
||
|
/* The Invitation */
|
||
|
protected $invitation;
|
||
|
|
||
|
/* Gateway capabilities */
|
||
|
protected $refundable = false;
|
||
|
|
||
|
/* Token billing */
|
||
|
protected $token_billing = false;
|
||
|
|
||
|
/* Authorise payment methods */
|
||
|
protected $can_authorise_credit_card = false;
|
||
|
|
||
|
|
||
|
public function __construct(CompanyGateway $company_gateway, Client $client, $invitation = false)
|
||
|
{
|
||
|
$this->company_gateway = $company_gateway;
|
||
|
|
||
|
$this->invitation = $invitation;
|
||
|
|
||
|
$this->client = $client;
|
||
|
}
|
||
|
|
||
|
|
||
|
public function authorize() {}
|
||
|
|
||
|
public function purchase() {}
|
||
|
|
||
|
public function refund() {}
|
||
|
}
|