$data
$data : array
通知数据.
微信支付-模式1支付通知处理基类.
$sdk : \Yurun\PaySDK\Base
SDK实例化.
$replyData : \Yurun\PaySDK\Weixin\Reply\PayMode1
返回数据.
<?php
namespace Yurun\PaySDK\Weixin\Notify;
use Yurun\PaySDK\Weixin\Reply\PayMode1 as ReplyPayMode1;
/**
* 微信支付-模式1支付通知处理基类.
*/
abstract class PayMode1 extends Base
{
/**
* 返回数据.
*
* @var \Yurun\PaySDK\Weixin\Reply\PayMode1
*/
public $replyData;
public function __construct()
{
parent::__construct();
$this->replyData = new ReplyPayMode1();
}
}