$_apiMethod
$_apiMethod : string
接口名称.
微信支付V3-获取平台证书列表.
__onExecute(\Yurun\PaySDK\Base $sdk, string $format) : boolean
当调用SDK的execute时触发,返回true时不执行SDK中默认的执行逻辑.
\Yurun\PaySDK\Base | $sdk | |
string | $format | 数据格式,json、xml等 |
<?php
namespace Yurun\PaySDK\Weixin\V3\Certificates;
use Yurun\PaySDK\WeixinRequestBaseV3;
/**
* 微信支付V3-获取平台证书列表.
*/
class Request extends WeixinRequestBaseV3
{
/**
* 接口请求方法.
*
* @var string
*/
public $_method = 'GET';
/**
* 接口名称.
*
* @var string
*/
public $_apiMethod = 'v3/certificates';
public function __construct()
{
parent::__construct();
$this->_isSyncVerify = false;
}
}