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.
Completed
Branch master (464194)
by t
02:45
created
src/ihelpers/Convert.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
             $sizeMap = [
51 51
                 '' => 0,
52 52
                 'b' => 0, // 为了简化正则
53
-                 'k' => 1,
53
+                    'k' => 1,
54 54
                 'm' => 2,
55 55
                 'g' => 3,
56 56
                 't' => 4,
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      */
47 47
     public static function size($sizeValue)
48 48
     {
49
-        $callback = function ($matches) {
49
+        $callback = function($matches) {
50 50
             $sizeMap = [
51 51
                 '' => 0,
52 52
                 'b' => 0, // 为了简化正则
Please login to merge, or discard this patch.
src/ihelpers/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
189 189
      */
190 190
     public static function create()
191 191
     {
192
-        if (!static::$_instance instanceof static ) {
192
+        if (!static::$_instance instanceof static) {
193 193
             static::$_instance = new static();
194 194
         }
195 195
         return static::$_instance;
Please login to merge, or discard this patch.
src/ihelpers/Image.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     public function __construct($image)
28 28
     {
29 29
         $attributes = $this->__parseImage($image);
30
-        array_map(function ($value, $key) {
30
+        array_map(function($value, $key) {
31 31
             $this->_attributes[$key] = $value;
32 32
         }, array_values($attributes), array_keys($attributes));
33 33
         $this->_imageIn = $this->_attributes['object'];
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
             $zoomWidth *= $this->_attributes['width'];
151 151
             $zoomHeight *= $this->_attributes['height'];
152 152
         } else {
153
-            $zoom = (int) $zoom;
153
+            $zoom = (int)$zoom;
154 154
             $zoomWidth = $zoom * $this->_attributes['width'];
155 155
             $zoomHeight = $zoom * $this->_attributes['height'];
156 156
         }
Please login to merge, or discard this patch.
src/ihelpers/Db.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
      */
240 240
     public static function create($config = [])
241 241
     {
242
-        if (!static::$_instance instanceof static ) {
242
+        if (!static::$_instance instanceof static) {
243 243
             static::$_instance = new static();
244 244
             if (!empty($config['dsn'])) {
245 245
                 $dbName = 'test';
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
         if (empty($where)) {
551 551
             return '';
552 552
         }
553
-        $generator = function ($key, $value) use (&$generator) {
553
+        $generator = function($key, $value) use (&$generator) {
554 554
             // 索引列
555 555
             if (is_numeric($key)) {
556 556
                 if (is_array($value) && !empty($value)) {
@@ -597,11 +597,11 @@  discard block
 block discarded – undo
597 597
                              * ]
598 598
                              * ==>> id IN (1,2,3)
599 599
                              */
600
-                            array_map(function ($data, $i) {
600
+                            array_map(function($data, $i) {
601 601
                                 $this->__params[':i' . ($this->__i + $i)] = $data;
602 602
                             }, $value[2], array_keys($value[2]));
603 603
 
604
-                            $condition = '(' . $value[1] . ' ' . strtoupper($value[0]) . ' (' . implode(',', array_map(function ($i) {
604
+                            $condition = '(' . $value[1] . ' ' . strtoupper($value[0]) . ' (' . implode(',', array_map(function($i) {
605 605
                                 return ':i' . ($this->__i + $i);
606 606
                             }, array_keys($value[2]))) . '))';
607 607
                             $this->__i += count($value[2]);
@@ -624,10 +624,10 @@  discard block
 block discarded – undo
624 624
             } else {
625 625
                 // 关联列
626 626
                 if (is_array($value)) {
627
-                    $condition = '(' . $key . ' IN (' . implode(',', array_map(function ($i) {
627
+                    $condition = '(' . $key . ' IN (' . implode(',', array_map(function($i) {
628 628
                         return ':i' . ($this->__i + $i);
629 629
                     }, array_keys($value))) . '))';
630
-                    array_map(function ($data, $i) {
630
+                    array_map(function($data, $i) {
631 631
                         $this->__params[':i' . ($this->__i + $i)] = $data;
632 632
                     }, $value, array_keys($value));
633 633
                     $this->__i += count($value);
@@ -691,7 +691,7 @@  discard block
 block discarded – undo
691 691
      */
692 692
     public function orderBy($orderBys)
693 693
     {
694
-        $this->__orderBy = array_map(function ($sort, $field) {
694
+        $this->__orderBy = array_map(function($sort, $field) {
695 695
             return $field . ' ' . $sort;
696 696
         }, array_values($orderBys), array_keys($orderBys));
697 697
 
@@ -855,7 +855,7 @@  discard block
 block discarded – undo
855 855
     public function rawSql()
856 856
     {
857 857
         $this->__parse();
858
-        $rawSql = str_replace(array_keys($this->__params), array_map(function ($data) {
858
+        $rawSql = str_replace(array_keys($this->__params), array_map(function($data) {
859 859
             return 'string' == gettype($data) ? '\'' . $data . '\'' : $data;
860 860
         }, array_values($this->__params)), $this->__queryString);
861 861
         $this->__reset();
Please login to merge, or discard this patch.
src/ihelpers/Upload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      */
51 51
     public static function create($config = [])
52 52
     {
53
-        if (!static::$_instance instanceof static ) {
53
+        if (!static::$_instance instanceof static) {
54 54
             static::$_instance = new static();
55 55
             static::$_instance->__formName = I::get($config, 'formName', 'file');
56 56
             static::$_instance->__sizeLimit = static::$_instance->__getSizeLimit(I::get($config, 'sizeLimit', 0));
Please login to merge, or discard this patch.
src/ihelpers/Reflector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      */
58 58
     public function getCurrentClassMethods($callback = null)
59 59
     {
60
-        $callback = null === $callback ? function () {
60
+        $callback = null === $callback ? function() {
61 61
             return true;
62 62
         } : $callback;
63 63
         $currentClass = $this->__reflector->getName();
Please login to merge, or discard this patch.
src/ihelpers/Html.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     public static function stripTags($html, $allowTags = [])
58 58
     {
59 59
         $allowTags = array_map('strtolower', $allowTags);
60
-        return preg_replace_callback('/<\/?([^>\s]+)[^>]*>/i', function ($matches) use (&$allowTags) {
60
+        return preg_replace_callback('/<\/?([^>\s]+)[^>]*>/i', function($matches) use (&$allowTags) {
61 61
             return in_array(strtolower($matches[1]), $allowTags) ? $matches[0] : '';
62 62
         }, $html);
63 63
     }
Please login to merge, or discard this patch.
src/ihelpers/Timer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     {
51 51
         $delta = 0.0;
52 52
         if (isset(static::$_timers[$name])) {
53
-            $delta = microtime(true)-static::$_timers[$name];
53
+            $delta = microtime(true) - static::$_timers[$name];
54 54
             unset(static::$_timers[$name]);
55 55
         }
56 56
 
Please login to merge, or discard this patch.
src/I.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,8 +78,8 @@
 block discarded – undo
78 78
             }
79 79
             return $mixed;
80 80
         } elseif (is_string($mixed) || is_numeric($mixed)) {
81
-            $pos = (int) $keyString;
82
-            $length = null === $defaultValue ? 1 : (int) $defaultValue;
81
+            $pos = (int)$keyString;
82
+            $length = null === $defaultValue ? 1 : (int)$defaultValue;
83 83
             return Strings::sub($mixed, $pos, $length);
84 84
         } elseif (null === $mixed) {
85 85
             return $defaultValue;
Please login to merge, or discard this patch.