Passed
Push — master ( b78485...8d68e1 )
by wannanbigpig
02:24
created
src/Payment/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
      */
56 56
     public function __call($name, $arguments)
57 57
     {
58
-        return call_user_func_array([$this['base'], $name], $arguments);
58
+        return call_user_func_array([ $this[ 'base' ], $name ], $arguments);
59 59
     }
60 60
 
61 61
     /**
Please login to merge, or discard this patch.
src/Payment/Pay/Client.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
     public function app(array $params)
33 33
     {
34 34
         $method = 'alipay.trade.app.pay';
35
-        $params['timeout_express'] = $params['timeout_express'] ?? '1c';
35
+        $params[ 'timeout_express' ] = $params[ 'timeout_express' ] ?? '1c';
36 36
         $this->app->setEndpointConfig($method, [
37
-            'return_url' => $this->app['config']->get('return_url'),
38
-            'notify_url' => $this->app['config']->get('notify_url'),
37
+            'return_url' => $this->app[ 'config' ]->get('return_url'),
38
+            'notify_url' => $this->app[ 'config' ]->get('notify_url'),
39 39
         ]);
40 40
 
41 41
         return $this->sdkExecute($method, [
@@ -56,10 +56,10 @@  discard block
 block discarded – undo
56 56
     public function wap(array $params, string $httpMethod = 'POST')
57 57
     {
58 58
         $method = 'alipay.trade.wap.pay';
59
-        $params['timeout_express'] = $params['timeout_express'] ?? '1c';
59
+        $params[ 'timeout_express' ] = $params[ 'timeout_express' ] ?? '1c';
60 60
         $this->app->setEndpointConfig($method, [
61
-            'return_url' => $this->app['config']->get('return_url'),
62
-            'notify_url' => $this->app['config']->get('notify_url'),
61
+            'return_url' => $this->app[ 'config' ]->get('return_url'),
62
+            'notify_url' => $this->app[ 'config' ]->get('notify_url'),
63 63
         ]);
64 64
 
65 65
         return $this->pageExecute($method, [
@@ -81,12 +81,12 @@  discard block
 block discarded – undo
81 81
     {
82 82
         $method = 'alipay.trade.page.pay';
83 83
         $params = array_merge([
84
-            'timeout_express' => $params['timeout_express'] ?? '1c',
84
+            'timeout_express' => $params[ 'timeout_express' ] ?? '1c',
85 85
             'product_code' => 'FAST_INSTANT_TRADE_PAY',
86 86
         ], $params);
87 87
         $this->app->setEndpointConfig($method, [
88
-            'return_url' => $this->app['config']->get('return_url'),
89
-            'notify_url' => $this->app['config']->get('notify_url'),
88
+            'return_url' => $this->app[ 'config' ]->get('return_url'),
89
+            'notify_url' => $this->app[ 'config' ]->get('notify_url'),
90 90
         ]);
91 91
 
92 92
         return $this->pageExecute($method, [
Please login to merge, or discard this patch.
src/Payment/Notify/Handle.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -72,9 +72,9 @@  discard block
 block discarded – undo
72 72
     public function run(Closure $closure): Response
73 73
     {
74 74
         try {
75
-            $response = \call_user_func($closure, $this->getMessage(), [$this, 'response']);
75
+            $response = \call_user_func($closure, $this->getMessage(), [ $this, 'response' ]);
76 76
         } catch (\Exception $e) {
77
-            $this->app['logger']->error('Alipay asynchronous notification fatal error:'.$e->getMessage());
77
+            $this->app[ 'logger' ]->error('Alipay asynchronous notification fatal error:' . $e->getMessage());
78 78
             $response = $this->response(false);
79 79
         }
80 80
 
@@ -107,9 +107,9 @@  discard block
 block discarded – undo
107 107
      */
108 108
     public function getMessage(): Collection
109 109
     {
110
-        $signData = $request = $this->app['request']->request->all();
111
-        unset($signData['sign'], $signData['sign_type']);
112
-        if ($this->verify($this->getSignContentUrlencode($signData), $request['sign'], $request['sign_type'])) {
110
+        $signData = $request = $this->app[ 'request' ]->request->all();
111
+        unset($signData[ 'sign' ], $signData[ 'sign_type' ]);
112
+        if ($this->verify($this->getSignContentUrlencode($signData), $request[ 'sign' ], $request[ 'sign_type' ])) {
113 113
             return new Collection($request);
114 114
         }
115 115
 
Please login to merge, or discard this patch.
src/Payment/Kernel/BaseClient.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -30,17 +30,17 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @throws \WannanBigPig\Supports\Exceptions\InvalidArgumentException
32 32
      */
33
-    public function sdkExecute(string $endpoint, array $params = [])
33
+    public function sdkExecute(string $endpoint, array $params = [ ])
34 34
     {
35 35
         // Get api system parameters
36 36
         $sysParams = $this->app->apiCommonConfig($endpoint);
37 37
         // Filter system parameters
38
-        $sysParams = array_filter($sysParams, function ($value) {
38
+        $sysParams = array_filter($sysParams, function($value) {
39 39
             return !($this->checkEmpty($value));
40 40
         });
41 41
         $params = array_merge($sysParams, $this->json($params));
42 42
         // Set the signature
43
-        $params['sign'] = $this->generateSign($params, $sysParams['sign_type']);
43
+        $params[ 'sign' ] = $this->generateSign($params, $sysParams[ 'sign_type' ]);
44 44
 
45 45
         ksort($params);
46 46
 
@@ -58,24 +58,24 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @throws \WannanBigPig\Supports\Exceptions\InvalidArgumentException
60 60
      */
61
-    public function pageExecute(string $endpoint, array $params = [], string $httpMethod = "POST")
61
+    public function pageExecute(string $endpoint, array $params = [ ], string $httpMethod = "POST")
62 62
     {
63 63
 
64 64
         // Get api system parameters
65 65
         $sysParams = $this->app->apiCommonConfig($endpoint);
66 66
         // Filter system parameters
67
-        $sysParams = array_filter($sysParams, function ($value) {
67
+        $sysParams = array_filter($sysParams, function($value) {
68 68
             return !($this->checkEmpty($value));
69 69
         });
70 70
         $params = array_merge($sysParams, $this->json($params));
71 71
         // Set the signature
72
-        $params['sign'] = $this->generateSign($params, $sysParams['sign_type']);
72
+        $params[ 'sign' ] = $this->generateSign($params, $sysParams[ 'sign_type' ]);
73 73
 
74 74
         if ("GET" === strtoupper($httpMethod)) {
75 75
             // value urlencode
76 76
             $preString = $this->getSignContentUrlencode($params);
77 77
             // Stitching GET request string
78
-            $requestUrl = $this->app->getGateway()."?".$preString;
78
+            $requestUrl = $this->app->getGateway() . "?" . $preString;
79 79
 
80 80
             return $requestUrl;
81 81
         } else {
@@ -93,21 +93,21 @@  discard block
 block discarded – undo
93 93
      */
94 94
     protected function buildRequestForm(array $paraTemp)
95 95
     {
96
-        $sHtml = "<form id='alipaysubmit' name='alipaysubmit' action='".
97
-            $this->app->getGateway()."?charset=".trim($paraTemp['charset']).
96
+        $sHtml = "<form id='alipaysubmit' name='alipaysubmit' action='" .
97
+            $this->app->getGateway() . "?charset=" . trim($paraTemp[ 'charset' ]) .
98 98
             "' method='POST'>";
99 99
 
100 100
         foreach ($paraTemp as $key => $val) {
101 101
             if (false === $this->checkEmpty($val)) {
102 102
                 $val = str_replace("'", "&apos;", $val);
103
-                $sHtml .= "<input type='hidden' name='".$key."' value='".$val."'/>";
103
+                $sHtml .= "<input type='hidden' name='" . $key . "' value='" . $val . "'/>";
104 104
             }
105 105
         }
106 106
 
107 107
         // Submit button control please do not include the name attribute
108
-        $sHtml = $sHtml."<input type='submit' value='ok' style='display:none;''></form>";
108
+        $sHtml = $sHtml . "<input type='submit' value='ok' style='display:none;''></form>";
109 109
 
110
-        $sHtml = $sHtml."<script>document.forms['alipaysubmit'].submit();</script>";
110
+        $sHtml = $sHtml . "<script>document.forms['alipaysubmit'].submit();</script>";
111 111
 
112 112
         return $sHtml;
113 113
     }
Please login to merge, or discard this patch.
src/Payment/Refund/Client.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             'out_trade_no' => $outTradeNo,
42 42
             'out_request_no' => $outRequestNo ?: $outTradeNo,
43 43
             'orgPid' => $orgPid,
44
-        ], function ($value) {
44
+        ], function($value) {
45 45
             return !($this->checkEmpty($value));
46 46
         });
47 47
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      *
65 65
      * @throws \WannanBigPig\Supports\Exceptions\InvalidArgumentException
66 66
      */
67
-    public function page(string $tradeNo, $amount, string $outRequestNo, string $outTradeNo = null, array $params = [], string $httpMethod = 'POST')
67
+    public function page(string $tradeNo, $amount, string $outRequestNo, string $outTradeNo = null, array $params = [ ], string $httpMethod = 'POST')
68 68
     {
69 69
         $method = 'alipay.trade.page.refund';
70 70
         $params = array_merge(array_filter([
@@ -72,11 +72,11 @@  discard block
 block discarded – undo
72 72
             'out_trade_no' => $outTradeNo,
73 73
             'refund_amount' => $amount,
74 74
             'out_request_no' => $outRequestNo,
75
-        ], function ($value) {
75
+        ], function($value) {
76 76
             return !($this->checkEmpty($value));
77 77
         }), $params);
78 78
         $this->app->setEndpointConfig($method, [
79
-            'return_url' => $this->app['config']->get('return_url'),
79
+            'return_url' => $this->app[ 'config' ]->get('return_url'),
80 80
         ]);
81 81
 
82 82
         return $this->pageExecute($method, [
Please login to merge, or discard this patch.
src/Kernel/Providers/ConfigServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function register(Container $pimple)
32 32
     {
33
-        $pimple['config'] = function (App $app) {
33
+        $pimple[ 'config' ] = function(App $app) {
34 34
             return new Config($app->getConfig());
35 35
         };
36 36
     }
Please login to merge, or discard this patch.
src/Kernel/Providers/AppServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
      */
29 29
     public function register(Container $pimple)
30 30
     {
31
-        foreach ($pimple['app_client_providers'] as $key => $value) {
32
-            $pimple[$key] = function ($app) use ($value) {
31
+        foreach ($pimple[ 'app_client_providers' ] as $key => $value) {
32
+            $pimple[ $key ] = function($app) use ($value) {
33 33
                 return new $value($app);
34 34
             };
35 35
         }
Please login to merge, or discard this patch.
src/Kernel/Providers/LogServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function register(Container $pimple)
31 31
     {
32
-        $pimple['logger'] = $pimple['log'] = function ($app) {
32
+        $pimple[ 'logger' ] = $pimple[ 'log' ] = function($app) {
33 33
             $config = $this->logConfig($app);
34 34
 
35 35
             return new Log($config);
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function logConfig($app)
47 47
     {
48
-        $logConfig = [];
49
-        if (!empty($app['config']->get('log'))) {
50
-            $logConfig = $app['config']->get('log');
48
+        $logConfig = [ ];
49
+        if (!empty($app[ 'config' ]->get('log'))) {
50
+            $logConfig = $app[ 'config' ]->get('log');
51 51
         }
52 52
 
53 53
         return array_merge([
Please login to merge, or discard this patch.
src/Kernel/Providers/HttpClientServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
29 29
      */
30 30
     public function register(Container $pimple)
31 31
     {
32
-        $pimple['http_client'] = function ($app) {
33
-            return new Client($app['config']->get('http', []));
32
+        $pimple[ 'http_client' ] = function($app) {
33
+            return new Client($app[ 'config' ]->get('http', [ ]));
34 34
         };
35 35
     }
36 36
 }
Please login to merge, or discard this patch.