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 ( 69a7a7...953172 )
by Thijs
04:32
created
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.