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
Push — master ( f5b4f0...d88521 )
by t
01:58
created
src/ihelpers/Arrays.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
     public static function combine($keys, $values)
261 261
     {
262 262
         if (count($keys) == count($values)) {
263
-            return (array) array_combine($keys, $values);
263
+            return (array)array_combine($keys, $values);
264 264
         }
265 265
         $array = [];
266 266
         foreach ($keys as $index => $key) {
@@ -663,7 +663,7 @@  discard block
 block discarded – undo
663 663
             } elseif (is_string($callback) || is_callable($callback)) {
664 664
                 $function = $callback;
665 665
                 if (is_string($callback)) {
666
-                    $function = function ($row) use ($callback, $isStrict) {
666
+                    $function = function($row) use ($callback, $isStrict) {
667 667
                         return true === $isStrict ? $row === $callback : $row == $callback;
668 668
                     };
669 669
                 }
Please login to merge, or discard this patch.
src/icomponents/file/LocalFile.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     {
48 48
         setlocale(LC_ALL, $locale);
49 49
         clearstatcache();
50
-        $this->_functions['loader'] = function ($fileName) {
50
+        $this->_functions['loader'] = function($fileName) {
51 51
             $hashName = $this->_getHashName($fileName);
52 52
             $this->_attributes[$hashName] = I::get($this->_attributes, $hashName, [
53 53
                 'isCached' => false,
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
                 chmod($subFile, $mode);
496 496
             }
497 497
         }
498
-        return (bool) chmod($file, $mode);
498
+        return (bool)chmod($file, $mode);
499 499
     }
500 500
 
501 501
     /**
Please login to merge, or discard this patch.