25 lines
524 B
PHP
25 lines
524 B
PHP
<?php
|
|
|
|
namespace App\ServicePay\TransCard;
|
|
|
|
abstract class BaseCard
|
|
{
|
|
protected $msg=null;
|
|
protected $orderInfo = [];
|
|
abstract public function message($msg);
|
|
|
|
public function showInfo(): array
|
|
{
|
|
$init = [
|
|
'from_card' => null,
|
|
'pay_money' => null,
|
|
'remark' => null,
|
|
'order_number' => null,
|
|
'from_name' => null,
|
|
];
|
|
|
|
return array_merge($init, $this->orderInfo);
|
|
}
|
|
|
|
abstract public function orderInfo($requestArr);
|
|
} |