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 ( 953172...65eb19 )
by Thijs
02:37
created
src/ArrayUtils.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     {
75 75
         return array_filter(
76 76
             $array,
77
-            function ($key) use ($value) {
77
+            function($key) use ($value) {
78 78
                 return strpos($key, $value) === 0;
79 79
             },
80 80
             ARRAY_FILTER_USE_KEY
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     {
114 114
         return array_combine(
115 115
             array_map(
116
-                function ($key) use ($prefix, $separator) {
116
+                function($key) use ($prefix, $separator) {
117 117
                     return $prefix . $separator . $key;
118 118
                 },
119 119
                 array_keys($array)
Please login to merge, or discard this patch.
src/FileSignatureUtils.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         }
32 32
         $signatureChars = str_split($signature, 2);
33 33
         $hexChars = array_map(
34
-            function ($val) {
34
+            function($val) {
35 35
                 return strtoupper(bin2hex($val));
36 36
             },
37 37
             str_split(substr($string, 0, count($signatureChars)))
Please login to merge, or discard this patch.
src/FormatUtils.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
      * @var array
12 12
      */
13 13
     protected static $formats = [
14
-        'decimal' => [ //  SI Prefixes (decimal)
14
+        'decimal' => [//  SI Prefixes (decimal)
15 15
             'mod' => 1000,
16 16
             'units' => ['B', 'kB', 'MB', 'GB', 'TB', 'PB'],
17 17
         ],
18
-        'binary' => [ // IEC prefixes (binary)
18
+        'binary' => [// IEC prefixes (binary)
19 19
             'mod' => 1024,
20 20
             'units' => ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB'],
21 21
         ],
Please login to merge, or discard this patch.