Passed
Push — master ( 3ad41b...82578d )
by wannanbigpig
03:46 queued 10s
created
src/Payment/FundAccredit/Client.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     {
50 50
         $method = 'alipay.fund.auth.operation.cancel';
51 51
         $this->app->setEndpointConfig($method, [
52
-            'notify_url' => $this->app['config']->get('notify_url'),
52
+            'notify_url' => $this->app[ 'config' ]->get('notify_url'),
53 53
         ]);
54 54
 
55 55
         return $this->request($method, [
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     {
73 73
         $method = 'alipay.fund.auth.order.freeze';
74 74
         $this->app->setEndpointConfig($method, [
75
-            'notify_url' => $this->app['config']->get('notify_url'),
75
+            'notify_url' => $this->app[ 'config' ]->get('notify_url'),
76 76
         ]);
77 77
 
78 78
         return $this->request($method, [
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         });
110 110
 
111 111
         $this->app->setEndpointConfig($method, [
112
-            'notify_url' => $this->app['config']->get('notify_url'),
112
+            'notify_url' => $this->app[ 'config' ]->get('notify_url'),
113 113
         ]);
114 114
 
115 115
         return $this->request($method, [
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     {
133 133
         $method = 'alipay.fund.auth.order.app.freeze';
134 134
         $this->app->setEndpointConfig($method, [
135
-            'notify_url' => $this->app['config']->get('notify_url'),
135
+            'notify_url' => $this->app[ 'config' ]->get('notify_url'),
136 136
         ]);
137 137
 
138 138
         return $this->request($method, [
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     {
156 156
         $method = 'alipay.fund.auth.order.voucher.create';
157 157
         $this->app->setEndpointConfig($method, [
158
-            'notify_url' => $this->app['config']->get('notify_url'),
158
+            'notify_url' => $this->app[ 'config' ]->get('notify_url'),
159 159
         ]);
160 160
 
161 161
         return $this->request($method, [
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
         $method = 'alipay.fund.trans.app.pay';
280 280
 
281 281
         $this->app->setEndpointConfig($method, [
282
-            'return_url' => $this->app['config']->get('return_url'),
282
+            'return_url' => $this->app[ 'config' ]->get('return_url'),
283 283
         ]);
284 284
 
285 285
         return $this->request($method, [
Please login to merge, or discard this patch.