Passed
Pull Request — master (#932)
by Songda
01:59
created
src/Plugin/Wechat/V3/Pay/Bill/GetFundPlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@
 block discarded – undo
36 36
 
37 37
         $rocket->setPayload([
38 38
             '_method' => 'GET',
39
-            '_url' => 'v3/bill/fundflowbill?'.$query,
40
-            '_service_url' => 'v3/bill/fundflowbill?'.$query,
39
+            '_url' => 'v3/bill/fundflowbill?' . $query,
40
+            '_service_url' => 'v3/bill/fundflowbill?' . $query,
41 41
         ]);
42 42
 
43 43
         Logger::info('[Wechat][V3][Pay][Bill][GetFundPlugin] 插件装载完毕', ['rocket' => $rocket]);
Please login to merge, or discard this patch.
src/Plugin/Wechat/V3/Pay/Bill/GetTradePlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@
 block discarded – undo
36 36
 
37 37
         $rocket->setPayload([
38 38
             '_method' => 'GET',
39
-            '_url' => 'v3/bill/tradebill?'.$query,
40
-            '_service_url' => 'v3/bill/tradebill?'.$query,
39
+            '_url' => 'v3/bill/tradebill?' . $query,
40
+            '_service_url' => 'v3/bill/tradebill?' . $query,
41 41
         ]);
42 42
 
43 43
         Logger::info('[Wechat][V3][Pay][Bill][GetTradePlugin] 插件装载完毕', ['rocket' => $rocket]);
Please login to merge, or discard this patch.
src/Plugin/Wechat/V3/Pay/Refund/QueryPlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
 
44 44
         $rocket->setPayload([
45 45
             '_method' => 'GET',
46
-            '_url' => 'v3/refund/domestic/refunds/'.$outRefundNo,
47
-            '_service_url' => 'v3/refund/domestic/refunds/'.$outRefundNo.'?sub_mchid='.$subMchId,
46
+            '_url' => 'v3/refund/domestic/refunds/' . $outRefundNo,
47
+            '_service_url' => 'v3/refund/domestic/refunds/' . $outRefundNo . '?sub_mchid=' . $subMchId,
48 48
         ]);
49 49
 
50 50
         Logger::info('[Wechat][V3][Pay][Refund][QueryPlugin] 插件装载完毕', ['rocket' => $rocket]);
Please login to merge, or discard this patch.