Passed
Branch master (c084d6)
by Songda
09:40
created
src/Plugin/Alipay/LaunchPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,6 +67,6 @@
 block discarded – undo
67 67
     {
68 68
         $method = $payload->get('method');
69 69
 
70
-        return str_replace('.', '_', $method).'_response';
70
+        return str_replace('.', '_', $method) . '_response';
71 71
     }
72 72
 }
Please login to merge, or discard this patch.
src/Plugin/Wechat/Fund/Transfer/CreatePlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     protected function getWechatId(array $params, Collection $payload): array
57 57
     {
58 58
         $config = get_wechat_config($params);
59
-        $key = ($params['_type'] ?? 'mp').'_app_id';
59
+        $key = ($params['_type'] ?? 'mp') . '_app_id';
60 60
 
61 61
         if ('app_app_id' === $key) {
62 62
             $key = 'app_id';
Please login to merge, or discard this patch.
src/Service/ContainerServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         }
40 40
 
41 41
         foreach ($this->detectApplication as $framework => $application) {
42
-            $method = $framework.'Application';
42
+            $method = $framework . 'Application';
43 43
 
44 44
             if (class_exists($application) && method_exists($this, $method) && $this->{$method}()) {
45 45
                 return;
Please login to merge, or discard this patch.
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.