Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 14 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
12 | class WapPayPlugin implements PluginInterface |
||
13 | { |
||
14 | public function assembly(Rocket $rocket, Closure $next): Rocket |
||
15 | { |
||
16 | $rocket->setDirection(ResponsePacker::class) |
||
17 | ->mergePayload([ |
||
18 | 'method' => 'alipay.trade.wap.pay', |
||
19 | 'biz_content' => array_merge( |
||
20 | [ |
||
21 | 'product_code' => 'QUICK_WAP_PAY', |
||
22 | ], |
||
23 | $rocket->getParams(), |
||
24 | ), |
||
|
|||
25 | ]); |
||
26 | |||
30 |