Passed
Push — main ( 33cb0c...67dbd0 )
by Abbotton
10:38
created
src/DouDianServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'doudian');
28 28
 
29 29
         // Register the main class to use with the facade
30
-        $this->app->singleton('doudian', function () {
30
+        $this->app->singleton('doudian', function() {
31 31
             $config = config('doudian');
32 32
 
33 33
             return new DouDian($config);
Please login to merge, or discard this patch.
src/DouDian.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     public function __get($class)
61 61
     {
62 62
         $class = '\\Abbotton\\DouDian\\Api\\'.Str::ucfirst($class);
63
-        if (! class_exists($class)) {
63
+        if (!class_exists($class)) {
64 64
             throw new Exception($class.', Not found', 404);
65 65
         }
66 66
 
Please login to merge, or discard this patch.
src/Api/BaseRequest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,11 +30,11 @@  discard block
 block discarded – undo
30 30
     {
31 31
         $this->config = $config;
32 32
         $this->shop_id = $shop_id;
33
-        if (! isset($config['app_key']) || ! $config['app_key']) {
33
+        if (!isset($config['app_key']) || !$config['app_key']) {
34 34
             throw new \InvalidArgumentException('配置有误, 请填写app_key');
35 35
         }
36 36
 
37
-        if (! isset($config['app_secret']) || ! $config['app_secret']) {
37
+        if (!isset($config['app_secret']) || !$config['app_secret']) {
38 38
             throw new \InvalidArgumentException('配置有误, 请填写app_secret');
39 39
         }
40 40
         $this->client = new Client();
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     private function getAccessToken(): string
138 138
     {
139 139
         $oauthToken = Cache::get(self::OAUTH_CACHE_KEY.$this->shop_id, []);
140
-        if (! $oauthToken || ! $oauthToken['refresh_token']) {
140
+        if (!$oauthToken || !$oauthToken['refresh_token']) {
141 141
             return $this->requestAccessToken();
142 142
         }
143 143
 
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         }
170 170
 
171 171
         $response = $this->httpGet('oauth2/access_token', $param, false);
172
-        if (! $response || $response['code'] > 10000) {
172
+        if (!$response || $response['code'] > 10000) {
173 173
             trigger_error("oauth2/access_token接口异常[{$response['code']}]");
174 174
         }
175 175
         $response['data']['access_token_expired_at'] = time() + $response['data']['expires_in'];
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
         ];
201 201
 
202 202
         $response = $this->httpGet('oauth2/refresh_token', $param, false);
203
-        if (! $response || $response['code'] > 10000) {
203
+        if (!$response || $response['code'] > 10000) {
204 204
             trigger_error("oauth2/access_token接口异常[{$response['code']}]");
205 205
         }
206 206
         $response['data']['access_token_expired_at'] = time() + $response['data']['expires_in'];
Please login to merge, or discard this patch.