38 lines
1022 B
PHP
38 lines
1022 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yansongda\Pay\Plugin\Alipay\Ebpp;
|
|
|
|
use Closure;
|
|
use Yansongda\Pay\Contract\PluginInterface;
|
|
use Yansongda\Pay\Logger;
|
|
use Yansongda\Pay\Rocket;
|
|
|
|
/**
|
|
* @see https://opendocs.alipay.com/open/02hd33
|
|
*/
|
|
class PdeductSignAddPlugin implements PluginInterface
|
|
{
|
|
public function assembly(Rocket $rocket, Closure $next): Rocket
|
|
{
|
|
Logger::info('[alipay][PdeductSignAddPlugin] 插件开始装载', ['rocket' => $rocket]);
|
|
|
|
$rocket->mergePayload([
|
|
'method' => 'alipay.ebpp.pdeduct.sign.add',
|
|
'biz_content' => array_merge(
|
|
[
|
|
'charge_inst' => 'CQCENTERELECTRIC',
|
|
'agent_channel' => 'PUBLICPLATFORM',
|
|
'deduct_prod_code' => 'INST_DIRECT_DEDUCT',
|
|
],
|
|
$rocket->getParams(),
|
|
),
|
|
]);
|
|
|
|
Logger::info('[alipay][PdeductSignAddPlugin] 插件装载完毕', ['rocket' => $rocket]);
|
|
|
|
return $next($rocket);
|
|
}
|
|
}
|