mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
32 lines
553 B
PHP
32 lines
553 B
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://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\PaymentDrivers\WePay;
|
|
|
|
use App\PaymentDrivers\WePayPaymentDriver;
|
|
|
|
class CreditCard
|
|
{
|
|
public $wepay;
|
|
|
|
public function __construct(WePayPaymentDriver $wepay)
|
|
{
|
|
$this->wepay = $wepay;
|
|
}
|
|
|
|
public function authorizeView($data)
|
|
{
|
|
|
|
}
|
|
|
|
}
|