GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Branch dev (8e731f)
by t
02:48
created
src/iapis/baidu/Base.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
             } catch (ClientException $e) {
158 158
                 throw new Exception("access_token 获取失败,接口返回为:" . $e->getResponse()->getBody()->getContents());
159 159
             }
160
-            $this->_token = (string) $this->getResult(self::RESULT_TOKEN);
160
+            $this->_token = (string)$this->getResult(self::RESULT_TOKEN);
161 161
         }
162 162
         return $this;
163 163
     }
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
      */
183 183
     public function getError()
184 184
     {
185
-        return (string) I::get($this->_errorMap, I::get($this->_result, 'error_code', 0), '未知错误');
185
+        return (string)I::get($this->_errorMap, I::get($this->_result, 'error_code', 0), '未知错误');
186 186
     }
187 187
 
188 188
     /**
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
      */
226 226
     public function toArray()
227 227
     {
228
-        return (array) I::call($this->_toArrayCall, [$this->getResult()]);
228
+        return (array)I::call($this->_toArrayCall, [$this->getResult()]);
229 229
     }
230 230
 
231 231
     /**
Please login to merge, or discard this patch.
src/iapis/baidu/OCR.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -76,8 +76,8 @@  discard block
 block discarded – undo
76 76
         ]), [
77 77
             'access_token' => $this->_token,
78 78
         ]));
79
-        $this->_toArrayCall = function ($result) {
80
-            return Arrays::column((array) I::get($result, 'words_result', []), 'words');
79
+        $this->_toArrayCall = function($result) {
80
+            return Arrays::column((array)I::get($result, 'words_result', []), 'words');
81 81
         };
82 82
 
83 83
         return $this;
@@ -102,8 +102,8 @@  discard block
 block discarded – undo
102 102
         ]), [
103 103
             'access_token' => $this->_token,
104 104
         ]));
105
-        $this->_toArrayCall = function ($result) {
106
-            return Arrays::column((array) I::get($result, 'words_result', []), 'words');
105
+        $this->_toArrayCall = function($result) {
106
+            return Arrays::column((array)I::get($result, 'words_result', []), 'words');
107 107
         };
108 108
 
109 109
         return $this;
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         ]), [
133 133
             'access_token' => $this->_token,
134 134
         ]));
135
-        $this->_toArrayCall = function ($result) {
135
+        $this->_toArrayCall = function($result) {
136 136
             return I::get($result, 'words_result');
137 137
         };
138 138
 
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         ]), [
161 161
             'access_token' => $this->_token,
162 162
         ]));
163
-        $this->_toArrayCall = function ($result) {
163
+        $this->_toArrayCall = function($result) {
164 164
             return I::get($result, 'words_result');
165 165
         };
166 166
 
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         ]), [
187 187
             'access_token' => $this->_token,
188 188
         ]));
189
-        $this->_toArrayCall = function ($result) {
189
+        $this->_toArrayCall = function($result) {
190 190
             return I::get($result, 'words_result');
191 191
         };
192 192
 
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
         $this->_result = Json::decode(Http::post('https://aip.baidubce.com/rest/2.0/ocr/v1/idcard', $options, [
215 215
             'access_token' => $this->_token,
216 216
         ]));
217
-        $this->_toArrayCall = function ($result) {
217
+        $this->_toArrayCall = function($result) {
218 218
             $return = [];
219 219
             $words = I::get($result, 'words_result', []);
220 220
             foreach ($words as $name => $word) {
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
         $this->_result = Json::decode(Http::post('https://aip.baidubce.com/rest/2.0/ocr/v1/bankcard', $options, [
241 241
             'access_token' => $this->_token,
242 242
         ]));
243
-        $this->_toArrayCall = function ($result) {
243
+        $this->_toArrayCall = function($result) {
244 244
             return I::get($result, 'result');
245 245
         };
246 246
         return $this;
Please login to merge, or discard this patch.
src/iapis/alipay/Pay.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
         $params = array_filter($params);
108 108
         foreach ($params as $key => $value) {
109 109
             if ('sign' !== $key && false === Strings::isStartsWith($value, '@')) {
110
-                $array[] = $key . '=' . Charset::convertTo($value, (string) I::get($this->_values, 'charset', 'utf-8'));
110
+                $array[] = $key . '=' . Charset::convertTo($value, (string)I::get($this->_values, 'charset', 'utf-8'));
111 111
             }
112 112
         }
113 113
         $string = implode('&', $array);
Please login to merge, or discard this patch.
src/iapis/alipay/PaySetterTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
      */
328 328
     public function setBizContentExtendParams($key, $value)
329 329
     {
330
-        $array = (array) I::get($this->_values, 'biz_content.extend_params', []);
330
+        $array = (array)I::get($this->_values, 'biz_content.extend_params', []);
331 331
         $array[$key] = $value;
332 332
         return $this->setBizContent('extend_params', $array);
333 333
     }
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
      */
478 478
     public function setBizContentExtUserInfo($key, $value)
479 479
     {
480
-        $array = (array) I::get($this->_values, 'biz_content.ext_user_info', []);
480
+        $array = (array)I::get($this->_values, 'biz_content.ext_user_info', []);
481 481
         $array[$key] = $value;
482 482
         return $this->setBizContent('ext_user_info', $array);
483 483
     }
Please login to merge, or discard this patch.
src/icomponents/excel/MathAndTrigonometry.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
         if ($number % 2 == 1) {
389 389
             $number += 1;
390 390
         }
391
-        return (int) $number;
391
+        return (int)$number;
392 392
     }
393 393
 
394 394
     /**
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
      */
413 413
     public static function fact($number)
414 414
     {
415
-        $number = (int) floor($number);
415
+        $number = (int)floor($number);
416 416
         if ($number == 0) {
417 417
             return 1;
418 418
         }
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
         }
441 441
         $result = 1;
442 442
         $isEven = $number % 2 == 0;
443
-        foreach (Arrays::rangeGenerator($isEven ? 2 : 1, (int) $number, 2) as $num) {
443
+        foreach (Arrays::rangeGenerator($isEven ? 2 : 1, (int)$number, 2) as $num) {
444 444
             $result *= $num;
445 445
         }
446 446
         return $result;
@@ -637,7 +637,7 @@  discard block
 block discarded – undo
637 637
             $arr = [];
638 638
             for ($r = 0; $r < $row1; $r++) {
639 639
                 for ($c = 0; $c < $col2; $c++) {
640
-                    $arr[$r][$c] = array_sum(array_map(function ($a1, $a2) {
640
+                    $arr[$r][$c] = array_sum(array_map(function($a1, $a2) {
641 641
                         return $a1 * $a2;
642 642
                     }, $array1[$r], Arrays::column($array2, $c)));
643 643
                 }
@@ -686,7 +686,7 @@  discard block
 block discarded – undo
686 686
     public static function multinomial($number1)
687 687
     {
688 688
         $numbers = is_array($number1) ? $number1 : func_get_args();
689
-        return self::fact(array_sum($numbers)) / array_product(array_map(function ($num) {
689
+        return self::fact(array_sum($numbers)) / array_product(array_map(function($num) {
690 690
             return self::fact($num);
691 691
         }, $numbers));
692 692
     }
@@ -729,7 +729,7 @@  discard block
 block discarded – undo
729 729
         if ($number % 2 == 0) {
730 730
             $number += 1;
731 731
         }
732
-        return (int) $number;
732
+        return (int)$number;
733 733
     }
734 734
 
735 735
     /**
@@ -778,7 +778,7 @@  discard block
 block discarded – undo
778 778
      */
779 779
     public static function quotient($numberator, $denominator)
780 780
     {
781
-        return (int) ($numberator / $denominator);
781
+        return (int)($numberator / $denominator);
782 782
     }
783 783
 
784 784
     /**
@@ -800,7 +800,7 @@  discard block
 block discarded – undo
800 800
      */
801 801
     public static function rand()
802 802
     {
803
-        return mt_rand(0, (int) self::power(10, 10)) / self::power(10, 10);
803
+        return mt_rand(0, (int)self::power(10, 10)) / self::power(10, 10);
804 804
     }
805 805
 
806 806
     /**
@@ -816,11 +816,11 @@  discard block
 block discarded – undo
816 816
      */
817 817
     public static function randarray($row = 1, $col = 1, $min = 0, $max = null, $isInt = false)
818 818
     {
819
-        null === $max && $max = (int) pow(10, 10);
819
+        null === $max && $max = (int)pow(10, 10);
820 820
         $array = [];
821 821
         for ($i = 0; $i < $row; $i++) {
822 822
             for ($j = 0; $j < $col; $j++) {
823
-                $array[$i][$j] = mt_rand($min, $max) + ($isInt ? 0 : mt_rand(0, (int) pow(10, 10)) / pow(10, 10));
823
+                $array[$i][$j] = mt_rand($min, $max) + ($isInt ? 0 : mt_rand(0, (int)pow(10, 10)) / pow(10, 10));
824 824
             }
825 825
         }
826 826
         return $array;
@@ -986,7 +986,7 @@  discard block
 block discarded – undo
986 986
         $k = 1;
987 987
         for ($i = 0; $i < $row; $i++) {
988 988
             for ($j = 0; $j < $col; $j++) {
989
-                $array[$i][$j] = $start + ($k++ - 1) * $step;
989
+                $array[$i][$j] = $start + ($k++ -1) * $step;
990 990
             }
991 991
         }
992 992
         return $array;
@@ -1123,7 +1123,7 @@  discard block
 block discarded – undo
1123 1123
                 array_push($arr[$i], $array[$i]);
1124 1124
             }
1125 1125
         }
1126
-        return array_sum(array_map(function ($rows) {
1126
+        return array_sum(array_map(function($rows) {
1127 1127
             return array_product($rows);
1128 1128
         }, $arr));
1129 1129
     }
@@ -1138,7 +1138,7 @@  discard block
 block discarded – undo
1138 1138
     public static function sumsq($number1)
1139 1139
     {
1140 1140
         $numbers = is_array($number1) ? $number1 : func_get_args();
1141
-        return array_sum(array_map(function ($num) {
1141
+        return array_sum(array_map(function($num) {
1142 1142
             return $num * $num;
1143 1143
         }, $numbers));
1144 1144
     }
Please login to merge, or discard this patch.
src/ihelpers/Strings.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      */
113 113
     public static function toCamel($string)
114 114
     {
115
-        return lcfirst(preg_replace_callback('/_+([a-z0-9_\x7f-\xff])/', function ($matches) {
115
+        return lcfirst(preg_replace_callback('/_+([a-z0-9_\x7f-\xff])/', function($matches) {
116 116
             return ucfirst($matches[1]);
117 117
         }, strtolower($string)));
118 118
     }
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
      */
144 144
     public static function isStartsWith($string, $search)
145 145
     {
146
-        return (string) $search !== "" && mb_strpos($string, $search) === 0;
146
+        return (string)$search !== "" && mb_strpos($string, $search) === 0;
147 147
     }
148 148
 
149 149
     /**
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     public static function isEndsWith($string, $search)
160 160
     {
161
-        return (string) $search !== "" && mb_substr($string, -static::length($search)) === $search;
161
+        return (string)$search !== "" && mb_substr($string, -static::length($search)) === $search;
162 162
     }
163 163
 
164 164
     /**
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
      */
175 175
     public static function isContains($string, $search, &$pos = null)
176 176
     {
177
-        return (string) $search !== "" && ($pos = mb_strpos($string, $search)) !== false;
177
+        return (string)$search !== "" && ($pos = mb_strpos($string, $search)) !== false;
178 178
     }
179 179
 
180 180
     /**
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
      */
241 241
     public static function split($string)
242 242
     {
243
-        return (array) preg_split('/(?<!^)(?!$)/u', $string);
243
+        return (array)preg_split('/(?<!^)(?!$)/u', $string);
244 244
     }
245 245
 
246 246
     /**
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
      */
296 296
     public static function toNumber($string)
297 297
     {
298
-        return (double) $string;
298
+        return (double)$string;
299 299
     }
300 300
 
301 301
     /**
@@ -538,7 +538,7 @@  discard block
 block discarded – undo
538 538
         } elseif (false === $returnArray) {
539 539
             return implode('', $result);
540 540
         } else {
541
-            return implode((string) $returnArray, $result);
541
+            return implode((string)$returnArray, $result);
542 542
         }
543 543
     }
544 544
 
@@ -552,8 +552,8 @@  discard block
 block discarded – undo
552 552
      */
553 553
     public static function toPinyinFirst($text, $returnArray = false)
554 554
     {
555
-        $array = (array) self::toPinyin($text, true);
556
-        $result = array_map(function ($row) {
555
+        $array = (array)self::toPinyin($text, true);
556
+        $result = array_map(function($row) {
557 557
             return self::sub($row, 0, 1);
558 558
         }, $array);
559 559
         if (true === $returnArray) {
@@ -561,7 +561,7 @@  discard block
 block discarded – undo
561 561
         } elseif (false === $returnArray) {
562 562
             return implode('', $result);
563 563
         } else {
564
-            return implode((string) $returnArray, $result);
564
+            return implode((string)$returnArray, $result);
565 565
         }
566 566
     }
567 567
 
Please login to merge, or discard this patch.
src/icomponents/file/SftpFile.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -44,13 +44,13 @@
 block discarded – undo
44 44
         C::assertFunction('ssh2_connect', '请开启 ssh2 扩展');
45 45
         C::assertTrue(Arrays::keyExistsAll(['host', 'username', 'password'], $config, $diff), '缺少 ' . implode(',', $diff) . ' 参数');
46 46
         $this->_conn = ssh2_connect(
47
-            (string) I::get($config, 'host'),
48
-            (int) I::get($config, 'port', 22),
49
-            (array) I::get($config, 'methods', []),
50
-            (array) I::get($config, 'callback', [])
47
+            (string)I::get($config, 'host'),
48
+            (int)I::get($config, 'port', 22),
49
+            (array)I::get($config, 'methods', []),
50
+            (array)I::get($config, 'callback', [])
51 51
         );
52 52
         C::assertNotFalse($this->_conn, '连接失败');
53
-        C::assertNotFalse(ssh2_auth_password($this->_conn, (string) I::get($config, 'username'), (string) I::get($config, 'password')), '账号密码错误');
53
+        C::assertNotFalse(ssh2_auth_password($this->_conn, (string)I::get($config, 'username'), (string)I::get($config, 'password')), '账号密码错误');
54 54
         $this->_sftp = ssh2_sftp($this->_conn);
55 55
         C::assertNotFalse($this->_sftp, '初始化 sftp 失败');
56 56
     }
Please login to merge, or discard this patch.
src/ihelpers/Request.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
      */
187 187
     public function isAjax()
188 188
     {
189
-        return 'XMLHttpRequest' === Arrays::first((array) I::get($this->getHeaders(), 'x-requested-with', []));
189
+        return 'XMLHttpRequest' === Arrays::first((array)I::get($this->getHeaders(), 'x-requested-with', []));
190 190
     }
191 191
 
192 192
     /**
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
             $secure = $this->isSecureConnection();
382 382
             $http = $secure ? 'https' : 'http';
383 383
             if (I::get($this->getHeaders(), 'x-forwarded-host')) {
384
-                $this->__hostInfo = $http . '://' . trim((string) Arrays::first(explode(',', (string) Arrays::first((array) I::get($this->getHeaders(), 'x-forward-host', [])))));
384
+                $this->__hostInfo = $http . '://' . trim((string)Arrays::first(explode(',', (string)Arrays::first((array)I::get($this->getHeaders(), 'x-forward-host', [])))));
385 385
             } elseif (I::get($this->getHeaders(), 'host')) {
386 386
                 $this->__hostInfo = $http . '://' . Arrays::first(I::get($this->getHeaders(), 'host'));
387 387
             } elseif (isset($_SERVER['SERVER_NAME'])) {
@@ -464,7 +464,7 @@  discard block
 block discarded – undo
464 464
      */
465 465
     public function getQueryString()
466 466
     {
467
-        return (string) I::get($_SERVER, 'QUERY_STRING', '');
467
+        return (string)I::get($_SERVER, 'QUERY_STRING', '');
468 468
     }
469 469
 
470 470
     /**
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
             return true;
479 479
         }
480 480
         foreach ($this->__secureProtocolHeaders as $header => $values) {
481
-            if (($headerValue = (string) I::get($this->getHeaders(), $header)) !== null) {
481
+            if (($headerValue = (string)I::get($this->getHeaders(), $header)) !== null) {
482 482
                 foreach ($values as $value) {
483 483
                     if (strcasecmp($headerValue, $value) === 0) {
484 484
                         return true;
@@ -497,7 +497,7 @@  discard block
 block discarded – undo
497 497
      */
498 498
     public function getServerName()
499 499
     {
500
-        return (string) I::get($_SERVER, 'SERVER_NAME');
500
+        return (string)I::get($_SERVER, 'SERVER_NAME');
501 501
     }
502 502
 
503 503
     /**
@@ -507,7 +507,7 @@  discard block
 block discarded – undo
507 507
      */
508 508
     public function getServerPort()
509 509
     {
510
-        return (int) I::get($_SERVER, 'SERVER_PORT');
510
+        return (int)I::get($_SERVER, 'SERVER_PORT');
511 511
     }
512 512
 
513 513
     /**
@@ -562,7 +562,7 @@  discard block
 block discarded – undo
562 562
      */
563 563
     public function getRemoteIP()
564 564
     {
565
-        return (string) I::get($_SERVER, 'REMOTE_ADDR');
565
+        return (string)I::get($_SERVER, 'REMOTE_ADDR');
566 566
     }
567 567
 
568 568
     /**
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
      */
573 573
     public function getRemoteHost()
574 574
     {
575
-        return (string) I::get($_SERVER, 'REMOTE_HOST');
575
+        return (string)I::get($_SERVER, 'REMOTE_HOST');
576 576
     }
577 577
 
578 578
     /**
Please login to merge, or discard this patch.
src/ihelpers/Http.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
         $promise = $client->requestAsync('GET', $url, [
56 56
             'query' => $get,
57 57
         ]);
58
-        $promise->then(function (ResponseInterface $res) use ($success) {
58
+        $promise->then(function(ResponseInterface $res) use ($success) {
59 59
             $success && $success($res->getBody()->getContents(), $res);
60
-        }, function (RequestException $err) use ($error) {
60
+        }, function(RequestException $err) use ($error) {
61 61
             $error && $error($err);
62 62
         });
63 63
     }
@@ -101,9 +101,9 @@  discard block
 block discarded – undo
101 101
             'query' => $get,
102 102
             'form_params' => $post,
103 103
         ]);
104
-        $promise->then(function (ResponseInterface $res) use ($success) {
104
+        $promise->then(function(ResponseInterface $res) use ($success) {
105 105
             $success && $success($res->getBody()->getContents(), $res);
106
-        }, function (RequestException $err) use ($error) {
106
+        }, function(RequestException $err) use ($error) {
107 107
             $error && $error($err);
108 108
         });
109 109
     }
@@ -147,9 +147,9 @@  discard block
 block discarded – undo
147 147
             'query' => $get,
148 148
             'body' => $body,
149 149
         ]);
150
-        $promise->then(function (ResponseInterface $res) use ($success) {
150
+        $promise->then(function(ResponseInterface $res) use ($success) {
151 151
             $success && $success($res->getBody()->getContents(), $res);
152
-        }, function (RequestException $err) use ($error) {
152
+        }, function(RequestException $err) use ($error) {
153 153
             $error && $error($err);
154 154
         });
155 155
     }
@@ -168,12 +168,12 @@  discard block
 block discarded – undo
168 168
     public function download($file)
169 169
     {
170 170
         list($from, $to) = (new LocalFile())->fileMap($file);
171
-        try{
171
+        try {
172 172
             (new Http())->get($from, [], [
173 173
                 'save_to' => I::getAlias($to),
174 174
             ]);
175 175
             return true;
176
-        }catch(RequestException $e){
176
+        } catch (RequestException $e) {
177 177
             return false;
178 178
         }
179 179
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@
 block discarded – undo
173 173
                 'save_to' => I::getAlias($to),
174 174
             ]);
175 175
             return true;
176
-        }catch(RequestException $e){
176
+        } catch(RequestException $e){
177 177
             return false;
178 178
         }
179 179
     }
Please login to merge, or discard this patch.