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
Push — master ( cc39b3...a4b478 )
by Anton
02:40
created
src/Support/helpers.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 function array_flatten(array $array): array
14 14
 {
15 15
     $flatten = [];
16
-    array_walk_recursive($array, function ($value) use (&$flatten) {
16
+    array_walk_recursive($array, function($value) use (&$flatten) {
17 17
         $flatten[] = $value;
18 18
     });
19 19
     return $flatten;
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 function env_stringify(array $array): string
58 58
 {
59 59
     return implode(' ', array_map(
60
-        function ($key, $value) {
60
+        function($key, $value) {
61 61
             return sprintf("%s=%s", $key, escapeshellarg((string) $value));
62 62
         },
63 63
         array_keys($array),
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     }
133 133
 
134 134
     if (getenv('COLORTERM') === 'truecolor') {
135
-        $hsv = function ($h, $s, $v) {
135
+        $hsv = function($h, $s, $v) {
136 136
             $r = $g = $b = $i = $f = $p = $q = $t = 0;
137 137
             $i = floor($h * 6);
138 138
             $f = $h * 6 - $i;
Please login to merge, or discard this patch.