Passed
Push — master ( 2729ea...b493c9 )
by Songda
02:00
created
src/Plugin/Wechat/Risk/Complaints/UpdateRefundPlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@
 block discarded – undo
30 30
             throw new InvalidParamsException(Exception::MISSING_NECESSARY_PARAMS);
31 31
         }
32 32
 
33
-        return 'v3/merchant-service/complaints-v2/'.
34
-            $payload->get('complaint_id').
33
+        return 'v3/merchant-service/complaints-v2/' .
34
+            $payload->get('complaint_id') .
35 35
             '/update-refund-progress';
36 36
     }
37 37
 }
Please login to merge, or discard this patch.
src/Plugin/Wechat/Risk/Complaints/CompleteComplaintPlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@
 block discarded – undo
30 30
             throw new InvalidParamsException(Exception::MISSING_NECESSARY_PARAMS);
31 31
         }
32 32
 
33
-        return 'v3/merchant-service/complaints-v2/'.
34
-            $payload->get('complaint_id').
33
+        return 'v3/merchant-service/complaints-v2/' .
34
+            $payload->get('complaint_id') .
35 35
             '/complete';
36 36
     }
37 37
 }
Please login to merge, or discard this patch.
src/Plugin/Wechat/Risk/Complaints/QueryComplaintDetailPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,6 +35,6 @@
 block discarded – undo
35 35
             throw new InvalidParamsException(Exception::MISSING_NECESSARY_PARAMS);
36 36
         }
37 37
 
38
-        return 'v3/merchant-service/complaints-v2/'.$payload->get('complaint_id');
38
+        return 'v3/merchant-service/complaints-v2/' . $payload->get('complaint_id');
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
src/Plugin/Wechat/Risk/Complaints/QueryComplaintsPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,6 +24,6 @@
 block discarded – undo
24 24
 
25 25
     protected function getUri(Rocket $rocket): string
26 26
     {
27
-        return 'v3/merchant-service/complaints-v2?'.$rocket->getPayload()->query();
27
+        return 'v3/merchant-service/complaints-v2?' . $rocket->getPayload()->query();
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
src/Plugin/Wechat/Risk/Complaints/ResponseComplaintPlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@
 block discarded – undo
30 30
             throw new InvalidParamsException(Exception::MISSING_NECESSARY_PARAMS);
31 31
         }
32 32
 
33
-        return 'v3/merchant-service/complaints-v2/'.
34
-            $payload->get('complaint_id').
33
+        return 'v3/merchant-service/complaints-v2/' .
34
+            $payload->get('complaint_id') .
35 35
             '/response';
36 36
     }
37 37
 }
Please login to merge, or discard this patch.
src/Plugin/Wechat/Risk/Complaints/QueryComplaintNegotiationPlugin.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
 
39 39
         $payload->forget('complaint_id');
40 40
 
41
-        return 'v3/merchant-service/complaints-v2/'.
42
-            $complaintId.
43
-            '/negotiation-historys?'.$payload->query();
41
+        return 'v3/merchant-service/complaints-v2/' .
42
+            $complaintId .
43
+            '/negotiation-historys?' . $payload->query();
44 44
     }
45 45
 }
Please login to merge, or discard this patch.