Passed
Push — master ( 99bfc0...d990ad )
by ma
19:38
created
src/Gateways/Csdn.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
             'state'         => $this->config['state'],
68 68
             'scope'         => $this->config['scope'],
69 69
         ];
70
-        return $this->AuthorizeURL . '?' . http_build_query($params);
70
+        return $this->AuthorizeURL.'?'.http_build_query($params);
71 71
     }
72 72
 
73 73
     /**
@@ -78,13 +78,13 @@  discard block
 block discarded – undo
78 78
     public function getUserInfo()
79 79
     {
80 80
         $this->openid();
81
-        $data = $this->get(static::API_BASE . $this->UserInfoURL, [
81
+        $data = $this->get(static::API_BASE.$this->UserInfoURL, [
82 82
             'access_token' => $this->token['access_token']
83 83
         ]);
84 84
         $data = json_decode($data, true);
85 85
         
86
-        if(!isset($data['username'])) {
87
-            throw new OAuthException("获取CSDN用户信息失败:" . ($data['error_description'] ?? '未知错误'));
86
+        if (!isset($data['username'])) {
87
+            throw new OAuthException("获取CSDN用户信息失败:".($data['error_description'] ?? '未知错误'));
88 88
         }
89 89
         return $data;
90 90
     }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         if (isset($data['access_token'])) {
113 113
             return $data;
114 114
         }
115
-        throw new OAuthException("获取CSDN ACCESS_TOKEN出错:" . ($data['error_description'] ?? '未知错误'));
115
+        throw new OAuthException("获取CSDN ACCESS_TOKEN出错:".($data['error_description'] ?? '未知错误'));
116 116
     }
117 117
 
118 118
     /**
Please login to merge, or discard this patch.
src/Gateways/Baidu.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             'state'         => $this->config['state'],
45 45
             'scope'         => $this->config['scope'],
46 46
         ];
47
-        return $this->AuthorizeURL . '?' . http_build_query($params);
47
+        return $this->AuthorizeURL.'?'.http_build_query($params);
48 48
     }
49 49
 
50 50
     /**
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
             'open_id' => isset($result['uid']) ? $result['uid'] : '',
62 62
             'union_id'=> isset($result['aid']) ? $result['aid'] : '',
63 63
             'channel' => ConstCode::TYPE_BAIDU,
64
-            'nickname'=> $result['uname'] ?? $result['login_name'] ?? '',  // 优先使用 uname
64
+            'nickname'=> $result['uname'] ?? $result['login_name'] ?? '', // 优先使用 uname
65 65
             'gender'  => isset($result['sex']) ? (($result['sex'] == '男' ? 1 : ($result['sex'] == '女' ? 2 : 0))) : ConstCode::GENDER,
66
-            'avatar'  => $result['portrait'] ?? '',  // 百度返回的头像字段
66
+            'avatar'  => $result['portrait'] ?? '', // 百度返回的头像字段
67 67
             'birthday'=> '',
68 68
             'access_token'=> $this->token['access_token'] ?? '',
69 69
             'native'=> $result,
@@ -87,8 +87,8 @@  discard block
 block discarded – undo
87 87
         $data = $this->get($this->UserInfoURL, [], $headers);
88 88
         $data = json_decode($data, true);
89 89
         
90
-        if(!isset($data['uid'])) {
91
-            throw new OAuthException("获取百度用户信息失败:" . ($data['error_description'] ?? '未知错误'));
90
+        if (!isset($data['uid'])) {
91
+            throw new OAuthException("获取百度用户信息失败:".($data['error_description'] ?? '未知错误'));
92 92
         }
93 93
         return $data;
94 94
     }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      * @author: JiaMeng <[email protected]>
113 113
      * Updater:
114 114
      */
115
-    protected function getToken(){
115
+    protected function getToken() {
116 116
         if (empty($this->token)) {
117 117
             /** 验证state参数 */
118 118
             $this->CheckState();
@@ -121,8 +121,8 @@  discard block
 block discarded – undo
121 121
             $params = $this->accessTokenParams();
122 122
 
123 123
             /** 获取access_token */
124
-            $this->AccessTokenURL = $this->AccessTokenURL . '?' . http_build_query($params);
125
-            $token =  $this->post($this->AccessTokenURL);
124
+            $this->AccessTokenURL = $this->AccessTokenURL.'?'.http_build_query($params);
125
+            $token = $this->post($this->AccessTokenURL);
126 126
             /** 解析token值(子类实现此方法) */
127 127
             $this->token = $this->parseToken($token);
128 128
         }
@@ -162,8 +162,8 @@  discard block
 block discarded – undo
162 162
             'client_secret' => $this->config['app_secret'],
163 163
         ];
164 164
         
165
-        $this->AccessTokenURL = static::API_BASE . 'oauth/2.0/token';
166
-        $token = $this->post($this->AccessTokenURL . '?' . http_build_query($params));
165
+        $this->AccessTokenURL = static::API_BASE.'oauth/2.0/token';
166
+        $token = $this->post($this->AccessTokenURL.'?'.http_build_query($params));
167 167
         $token = $this->parseToken($token);
168 168
         
169 169
         if (isset($token['access_token'])) {
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
     {
183 183
         try {
184 184
             $accessToken = $accessToken ?? $this->token['access_token'];
185
-            $headers = ['Authorization: Bearer ' . $accessToken];
185
+            $headers = ['Authorization: Bearer '.$accessToken];
186 186
             $data = $this->get($this->UserInfoURL, [], $headers);
187 187
             $data = json_decode($data, true);
188 188
             return isset($data['uid']);
Please login to merge, or discard this patch.
src/Gateways/Qq.php 2 patches
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             'scope'         => $this->config['scope'],
56 56
             'display'       => $this->display,
57 57
         ];
58
-        return $this->AuthorizeURL . '?' . http_build_query($params);
58
+        return $this->AuthorizeURL.'?'.http_build_query($params);
59 59
     }
60 60
 
61 61
     /**
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
             'nickname'=> $result['nickname'],
78 78
             'gender'  => isset($result['gender']) ? $this->getGender($result['gender']) : ConstCode::GENDER,
79 79
             'avatar'  => $result['figureurl_qq_2'] ? $result['figureurl_qq_2'] : $result['figureurl_qq_1'],
80
-            'birthday'=> date('Y-m-d',strtotime($result['year'])),
80
+            'birthday'=> date('Y-m-d', strtotime($result['year'])),
81 81
             'native'   => $result,
82 82
         ];
83 83
         return $userInfo;
@@ -112,12 +112,12 @@  discard block
 block discarded – undo
112 112
      */
113 113
     public function openid()
114 114
     {
115
-        if($this->type == 'app'){//App登录
116
-            if(!isset($_REQUEST['access_token'])){
115
+        if ($this->type == 'app') {//App登录
116
+            if (!isset($_REQUEST['access_token'])) {
117 117
                 throw new OAuthException("腾讯QQ,APP登录 需要传输access_token参数! ");
118 118
             }
119 119
             $this->token['access_token'] = $_REQUEST['access_token'];
120
-        }else{
120
+        } else {
121 121
             /** 获取token */
122 122
             $this->getToken();
123 123
         }
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
         if (isset($data['access_token'])) {
144 144
             return $data;
145 145
         } else {
146
-            throw new OAuthException("获取腾讯QQ ACCESS_TOKEN 出错:" . $token);
146
+            throw new OAuthException("获取腾讯QQ ACCESS_TOKEN 出错:".$token);
147 147
         }
148 148
     }
149 149
 
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      * @return mixed|string
155 155
      * @throws OAuthException
156 156
      */
157
-    private function getOpenID(){
157
+    private function getOpenID() {
158 158
         $query = [
159 159
             'access_token' => $this->token['access_token']
160 160
         ];
@@ -163,12 +163,12 @@  discard block
 block discarded – undo
163 163
             $query['unionid'] = 1;
164 164
         }
165 165
 
166
-        $data = $this->get(self::API_BASE . 'oauth2.0/me',$query);
167
-        $data     = json_decode(trim(substr($data, 9), " );\n"), true);
166
+        $data = $this->get(self::API_BASE.'oauth2.0/me', $query);
167
+        $data = json_decode(trim(substr($data, 9), " );\n"), true);
168 168
         if (isset($data['openid'])) {
169 169
             return $data;
170 170
         } else {
171
-            throw new OAuthException("获取用户openid出错:" . $data['error_description']);
171
+            throw new OAuthException("获取用户openid出错:".$data['error_description']);
172 172
         }
173 173
     }
174 174
 
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      * M代表男性,F代表女性
178 178
      * @param $gender
179 179
      */
180
-    public function getGender($gender){
180
+    public function getGender($gender) {
181 181
         return $gender == '男' ? ConstCode::GENDER_MAN : ConstCode::GENDER_WOMEN;
182 182
     }
183 183
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
                 throw new OAuthException("腾讯QQ,APP登录 需要传输access_token参数! ");
118 118
             }
119 119
             $this->token['access_token'] = $_REQUEST['access_token'];
120
-        }else{
120
+        } else{
121 121
             /** 获取token */
122 122
             $this->getToken();
123 123
         }
Please login to merge, or discard this patch.
src/Gateways/Twitter.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         $this->saveState();
29 29
         //登录参数
30 30
         $oauthToken = $this->call('oauth/request_token', ['oauth_callback' => $this->config['callback']], 'POST');
31
-        return self::API_BASE . 'oauth/authenticate?oauth_token=' . $oauthToken['oauth_token'];
31
+        return self::API_BASE.'oauth/authenticate?oauth_token='.$oauthToken['oauth_token'];
32 32
     }
33 33
 
34 34
     /**
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
             if (isset($this->token['oauth_token_secret'])) {
71 71
                 $this->tokenSecret = $this->token['oauth_token_secret'];
72 72
             } else {
73
-                throw new OAuthException("获取Twitter ACCESS_TOKEN 出错:" . json_encode($this->token));
73
+                throw new OAuthException("获取Twitter ACCESS_TOKEN 出错:".json_encode($this->token));
74 74
             }
75 75
         }
76 76
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         $method  = strtoupper($method);
91 91
         $request = [
92 92
             'method' => $method,
93
-            'uri'    => self::API_BASE . $api,
93
+            'uri'    => self::API_BASE.$api,
94 94
         ];
95 95
         $oauthParams                    = $this->getOAuthParams($params);
96 96
         $oauthParams['oauth_signature'] = $this->signature($request, $oauthParams);
@@ -135,8 +135,8 @@  discard block
 block discarded – undo
135 135
     {
136 136
         ksort($params);
137 137
         $sign_str = Str::buildParams($params, true);
138
-        $sign_str = $request['method'] . '&' . rawurlencode($request['uri']) . '&' . rawurlencode($sign_str);
139
-        $sign_key = $this->config['app_secret'] . '&' . $this->tokenSecret;
138
+        $sign_str = $request['method'].'&'.rawurlencode($request['uri']).'&'.rawurlencode($sign_str);
139
+        $sign_key = $this->config['app_secret'].'&'.$this->tokenSecret;
140 140
 
141 141
         return rawurlencode(base64_encode(hash_hmac('sha1', $sign_str, $sign_key, true)));
142 142
     }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     {
152 152
         $return = 'OAuth ';
153 153
         foreach ($params as $k => $param) {
154
-            $return .= $k . '="' . $param . '", ';
154
+            $return .= $k.'="'.$param.'", ';
155 155
         }
156 156
         return rtrim($return, ', ');
157 157
     }
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      * 解析access_token方法请求后的返回值
173 173
      * @param string $token 获取access_token的方法的返回值
174 174
      */
175
-    protected function parseToken($token){
175
+    protected function parseToken($token) {
176 176
         return $token;
177 177
     }
178 178
 
Please login to merge, or discard this patch.
src/Gateways/Gitlab.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
             'state'         => $this->config['state'],
32 32
             'scope'         => $this->config['scope'] ?: 'read_user',
33 33
         ];
34
-        return $this->AuthorizeURL . '?' . http_build_query($params);
34
+        return $this->AuthorizeURL.'?'.http_build_query($params);
35 35
     }
36 36
 
37 37
     public function userInfo()
@@ -53,12 +53,12 @@  discard block
 block discarded – undo
53 53
     public function getUserInfo()
54 54
     {
55 55
         $this->openid();
56
-        $headers = ['Authorization: Bearer ' . $this->token['access_token']];
57
-        $data = $this->get(static::API_BASE . $this->UserInfoURL, [], $headers);
56
+        $headers = ['Authorization: Bearer '.$this->token['access_token']];
57
+        $data = $this->get(static::API_BASE.$this->UserInfoURL, [], $headers);
58 58
         $data = json_decode($data, true);
59 59
         
60
-        if(!isset($data['id'])) {
61
-            throw new OAuthException("获取GitLab用户信息失败:" . ($data['error_description'] ?? '未知错误'));
60
+        if (!isset($data['id'])) {
61
+            throw new OAuthException("获取GitLab用户信息失败:".($data['error_description'] ?? '未知错误'));
62 62
         }
63 63
         return $data;
64 64
     }
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         if (isset($data['access_token'])) {
107 107
             return $data;
108 108
         }
109
-        throw new OAuthException("获取GitLab ACCESS_TOKEN出错:" . ($data['error_description'] ?? '未知错误'));
109
+        throw new OAuthException("获取GitLab ACCESS_TOKEN出错:".($data['error_description'] ?? '未知错误'));
110 110
     }
111 111
 
112 112
     /**
Please login to merge, or discard this patch.
src/Gateways/Alipay.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             $this->AuthorizeURL = str_replace("alipay", "alipaydev", $this->AuthorizeURL);
82 82
         }
83 83
 
84
-        return $this->AuthorizeURL . '?' . http_build_query($params);
84
+        return $this->AuthorizeURL.'?'.http_build_query($params);
85 85
     }
86 86
 
87 87
     /**
@@ -114,17 +114,17 @@  discard block
 block discarded – undo
114 114
 
115 115
         $userInfo = [
116 116
             'open_id'  => $this->openid(),
117
-            'union_id'  => $this->token['union_id']??'',
117
+            'union_id'  => $this->token['union_id'] ?? '',
118 118
             'channel' => ConstCode::TYPE_ALIPAY,
119 119
             'nickname'    => $result['nick_name'],
120 120
             'gender'  => isset($result['gender']) ? $this->getGender($result['gender']) : ConstCode::GENDER,
121 121
             'avatar'  => $result['avatar'],
122 122
             // 拓展字段
123
-            'access_token'  => $this->token['access_token']??'',
123
+            'access_token'  => $this->token['access_token'] ?? '',
124 124
             'user_id'  => $this->token['user_id'],
125 125
             'native'   => $result,
126 126
         ];
127
-        $userInfo['type'] = ConstCode::getTypeConst($userInfo['channel'],$this->type);
127
+        $userInfo['type'] = ConstCode::getTypeConst($userInfo['channel'], $this->type);
128 128
         return $userInfo;
129 129
     }
130 130
 
@@ -137,12 +137,12 @@  discard block
 block discarded – undo
137 137
      */
138 138
     public function getUserInfo()
139 139
     {
140
-        if($this->type == 'app'){//App登录
141
-            if(!isset($_REQUEST['access_token']) ){
140
+        if ($this->type == 'app') {//App登录
141
+            if (!isset($_REQUEST['access_token'])) {
142 142
                 throw new OAuthException("AliPay APP登录 需要传输access_token参数! ");
143 143
             }
144 144
             $this->token['access_token'] = $_REQUEST['access_token'];
145
-        }else {
145
+        } else {
146 146
             /** 获取token信息 */
147 147
             $this->getToken();
148 148
         }
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 
161 161
         $data = $this->post(self::API_BASE, $params);
162 162
         $data = mb_convert_encoding($data, 'utf-8', 'gbk');
163
-        $result =  json_decode($data, true);
163
+        $result = json_decode($data, true);
164 164
         return $result['alipay_user_info_share_response'];
165 165
     }
166 166
 
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
             throw new OAuthException('支付宝RSA密钥未配置');
238 238
         }
239 239
         $rsa    = str_replace([PHP_EOL, $header, $footer], '', $rsa);
240
-        $rsaVal = $header . PHP_EOL . chunk_split($rsa, 64, PHP_EOL) . $footer;
240
+        $rsaVal = $header.PHP_EOL.chunk_split($rsa, 64, PHP_EOL).$footer;
241 241
         return $rsaVal;
242 242
     }
243 243
 
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
 
257 257
         if (isset($data['alipay_system_oauth_token_response'])) {
258 258
             $data           = $data['alipay_system_oauth_token_response'];
259
-            $data['openid'] = $data['open_id']??$data['user_id'];
259
+            $data['openid'] = $data['open_id'] ?? $data['user_id'];
260 260
             return $data;
261 261
         } else {
262 262
             throw new OAuthException("获取支付宝 ACCESS_TOKEN 出错:{$token}");
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
                 throw new OAuthException("AliPay APP登录 需要传输access_token参数! ");
143 143
             }
144 144
             $this->token['access_token'] = $_REQUEST['access_token'];
145
-        }else {
145
+        } else {
146 146
             /** 获取token信息 */
147 147
             $this->getToken();
148 148
         }
Please login to merge, or discard this patch.
src/Gateways/Coding.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
             'scope'         => $this->config['scope'],
40 40
             'state'         => $this->config['state'],
41 41
         ];
42
-        return $this->AuthorizeURL . '?' . http_build_query($params);
42
+        return $this->AuthorizeURL.'?'.http_build_query($params);
43 43
     }
44 44
 
45 45
     /**
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
             'access_token' => $this->token['access_token'] ?? '',
60 60
             'channel' => ConstCode::TYPE_CODING,
61 61
             'nickname' => $response['name'] ?? '',
62
-            'gender'   => ConstCode::GENDER,  // Coding 不返回性别信息
62
+            'gender'   => ConstCode::GENDER, // Coding 不返回性别信息
63 63
             'avatar'   => $response['avatar'] ?? '',
64 64
             // 额外信息
65 65
             'email'    => $response['email'] ?? '',
@@ -80,8 +80,8 @@  discard block
 block discarded – undo
80 80
         ]);
81 81
         $data = json_decode($data, true);
82 82
         
83
-        if(!isset($data['id'])) {
84
-            throw new OAuthException("获取Coding用户信息失败:" . ($data['error_description'] ?? '未知错误'));
83
+        if (!isset($data['id'])) {
84
+            throw new OAuthException("获取Coding用户信息失败:".($data['error_description'] ?? '未知错误'));
85 85
         }
86 86
         return $data;
87 87
     }
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         if (isset($data['access_token'])) {
130 130
             return $data;
131 131
         }
132
-        throw new OAuthException("获取Coding ACCESS_TOKEN出错:" . ($data['error_description'] ?? '未知错误'));
132
+        throw new OAuthException("获取Coding ACCESS_TOKEN出错:".($data['error_description'] ?? '未知错误'));
133 133
     }
134 134
 
135 135
     /**
Please login to merge, or discard this patch.
src/Gateways/Oschina.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
         ]);
49 49
         $data = json_decode($data, true);
50 50
         
51
-        if(!isset($data['id'])) {
52
-            throw new OAuthException("获取OSChina用户信息失败:" . ($data['error_description'] ?? '未知错误'));
51
+        if (!isset($data['id'])) {
52
+            throw new OAuthException("获取OSChina用户信息失败:".($data['error_description'] ?? '未知错误'));
53 53
         }
54 54
         return $data;
55 55
     }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             'state'         => $this->config['state'],
69 69
             'scope'         => $this->config['scope'],
70 70
         ];
71
-        return $this->AuthorizeURL . '?' . http_build_query($params);
71
+        return $this->AuthorizeURL.'?'.http_build_query($params);
72 72
     }
73 73
 
74 74
     /**
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         if (isset($data['access_token'])) {
116 116
             return $data;
117 117
         }
118
-        throw new OAuthException("获取OSChina ACCESS_TOKEN出错:" . ($data['error_description'] ?? '未知错误'));
118
+        throw new OAuthException("获取OSChina ACCESS_TOKEN出错:".($data['error_description'] ?? '未知错误'));
119 119
     }
120 120
 
121 121
     /**
Please login to merge, or discard this patch.
src/Gateways/Wechat.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         $this->saveState();
43 43
 
44 44
         //获取代理链接
45
-        if(isset($this->config['proxy_url'])){
45
+        if (isset($this->config['proxy_url'])) {
46 46
             return $this->getProxyURL();
47 47
         }
48 48
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             'scope'         => $this->config['scope'],
56 56
             'state'         => $this->config['state'],
57 57
         ];
58
-        return $this->AuthorizeURL . '?' . http_build_query($params) . '#wechat_redirect';
58
+        return $this->AuthorizeURL.'?'.http_build_query($params).'#wechat_redirect';
59 59
     }
60 60
 
61 61
     /**
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             'state'         => $this->config['state'],
74 74
             'redirect_uri'    => $this->config['callback'],
75 75
         ];
76
-        return $this->config['proxy_url'] . '?' . http_build_query($params);
76
+        return $this->config['proxy_url'].'?'.http_build_query($params);
77 77
     }
78 78
 
79 79
     /**
@@ -110,12 +110,12 @@  discard block
 block discarded – undo
110 110
             'union_id'=> $this->token['unionid'] ?? '',
111 111
             'access_token'=> $this->token['access_token'] ?? '',
112 112
             'channel' => ConstCode::TYPE_WECHAT,
113
-            'nickname'=> $result['nickname']??'',
113
+            'nickname'=> $result['nickname'] ?? '',
114 114
             'gender'  => $result['sex'] ?? ConstCode::GENDER,
115
-            'avatar'  => $result['headimgurl']??'',
115
+            'avatar'  => $result['headimgurl'] ?? '',
116 116
             'type'    => ConstCode::getTypeConst(ConstCode::TYPE_WECHAT, $this->type),
117 117
             // 额外信息
118
-            'session_key'  => $result['session_key']??'',
118
+            'session_key'  => $result['session_key'] ?? '',
119 119
             'native'   => $result,
120 120
         ];
121 121
         return $userInfo;
@@ -130,15 +130,15 @@  discard block
 block discarded – undo
130 130
      */
131 131
     public function getUserInfo()
132 132
     {
133
-        if($this->type == 'app'){//App登录
134
-            if(!isset($_REQUEST['access_token']) ){
133
+        if ($this->type == 'app') {//App登录
134
+            if (!isset($_REQUEST['access_token'])) {
135 135
                 throw new OAuthException("Wechat APP登录 需要传输access_token参数! ");
136 136
             }
137 137
             $this->token['access_token'] = $_REQUEST['access_token'];
138
-        }elseif ($this->type == 'applets'){
138
+        }elseif ($this->type == 'applets') {
139 139
             //小程序
140 140
             return $this->applets();
141
-        }else {
141
+        } else {
142 142
             /** 获取token信息 */
143 143
             $this->getToken();
144 144
         }
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
             'openid'=>$this->openid(),
150 150
             'lang'=>'zh_CN',
151 151
         ];
152
-        $data = $this->get(self::API_BASE . 'userinfo', $params);
152
+        $data = $this->get(self::API_BASE.'userinfo', $params);
153 153
         return json_decode($data, true);
154 154
     }
155 155
 
@@ -157,13 +157,13 @@  discard block
 block discarded – undo
157 157
      * @return array|mixed|null
158 158
      * @throws OAuthException
159 159
      */
160
-    public function applets(){
160
+    public function applets() {
161 161
         /** 获取参数 */
162 162
         $params = $this->accessTokenParams();
163 163
         $params['js_code'] = $params['code'];
164 164
 
165 165
         /** 获取access_token */
166
-        $token =  $this->get($this->jsCode2Session, $params);
166
+        $token = $this->get($this->jsCode2Session, $params);
167 167
         /** 解析token值(子类实现此方法) */
168 168
         $this->token = $this->parseToken($token);
169 169
         return $this->token;
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
         $data = json_decode($token, true);
220 220
         if (isset($data['access_token'])) {
221 221
             return $data;
222
-        }elseif (isset($data['session_key'])){
222
+        }elseif (isset($data['session_key'])) {
223 223
             //小程序登录
224 224
             return $data;
225 225
         } else {
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
                 'access_token' => $accessToken,
299 299
                 'openid'      => $this->openid(),
300 300
             ];
301
-            $result = $this->get(self::API_BASE . 'auth', $params);
301
+            $result = $this->get(self::API_BASE.'auth', $params);
302 302
             $result = json_decode($result, true);
303 303
             return isset($result['errcode']) && $result['errcode'] == 0;
304 304
         } catch (\Exception $e) {
Please login to merge, or discard this patch.
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -135,10 +135,10 @@  discard block
 block discarded – undo
135 135
                 throw new OAuthException("Wechat APP登录 需要传输access_token参数! ");
136 136
             }
137 137
             $this->token['access_token'] = $_REQUEST['access_token'];
138
-        }elseif ($this->type == 'applets'){
138
+        } elseif ($this->type == 'applets'){
139 139
             //小程序
140 140
             return $this->applets();
141
-        }else {
141
+        } else {
142 142
             /** 获取token信息 */
143 143
             $this->getToken();
144 144
         }
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
         $data = json_decode($token, true);
220 220
         if (isset($data['access_token'])) {
221 221
             return $data;
222
-        }elseif (isset($data['session_key'])){
222
+        } elseif (isset($data['session_key'])){
223 223
             //小程序登录
224 224
             return $data;
225 225
         } else {
Please login to merge, or discard this patch.