| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Created by PhpStorm.
- * Author: 芸众商城 www.yunzshop.com
- * Date: 2017/3/28
- * Time: 下午8:40
- */
- namespace app\common\events;
- use app\common\services\Pay;
- class PayLog extends Event
- {
- protected $pay_request_params;
- protected $pay;
- public function __construct($params, Pay $pay)
- {
- $this->pay_request_params = $params;
- $this->pay = $pay;
- }
- /**
- * 支付请求参数
- * @return mixed
- */
- public function getPayRequestParams()
- {
- return $this->pay_request_params;
- }
- public function getPayObject()
- {
- return $this->pay;
- }
- }
|