25 lines
399 B
PHP
25 lines
399 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
*
|
|
*
|
|
*
|
|
* Date: 2021/8/26
|
|
* Time: 14:02
|
|
*/
|
|
|
|
namespace app\common\payment\method\other;
|
|
|
|
|
|
use app\common\payment\method\BasePayment;
|
|
use app\common\payment\setting\other\HfTxSetting;
|
|
|
|
class HftxAliNPayment extends BasePayment
|
|
{
|
|
public $code = 'A_NATIVE';
|
|
|
|
public function __construct(HfTxSetting $paymentSetting)
|
|
{
|
|
$this->setSetting($paymentSetting);
|
|
}
|
|
} |