for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Plugin\Alipay\Pay\H5;
use Closure;
use Yansongda\Pay\Contract\PluginInterface;
use Yansongda\Pay\Logger;
use Yansongda\Pay\Rocket;
/**
* @see https://opendocs.alipay.com/open/7be83133_alipay.trade.fastpay.refund.query?pathHash=7cf4fed5&ref=api&scene=common
*/
class QueryRefundPlugin implements PluginInterface
{
public function assembly(Rocket $rocket, Closure $next): Rocket
Logger::debug('[Alipay][Pay][Wap][QueryRefundPlugin] 通用插件开始装载', ['rocket' => $rocket]);
$rocket->mergePayload([
'method' => 'alipay.trade.fastpay.refund.query',
'biz_content' => $rocket->getParams(),
]);
Logger::info('[Alipay][Pay][Wap][QueryRefundPlugin] 通用插件装载完毕', ['rocket' => $rocket]);
return $next($rocket);
}