sifangpay/app/ServicePay/TransCard/GetTransInfo.php

33 lines
543 B
PHP

<?php
namespace App\ServicePay\TransCard;
class GetTransInfo
{
/**
* @var BaseCard
*/
private $card = null;
public function __construct(BaseCard $card)
{
$this->card = $card;
}
/**
* 返回解析短信的信息
* @return mixed
*/
public function getInfo()
{
return $this->card->showInfo();
}
/**
* @param $requestArr
* @return mixed
*/
public function getOrderInfo($requestArr){
return $this->card->orderInfo($requestArr);
}
}