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 ( cbf992...372b62 )
by Ayesh
15s
created
src/Formatter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
   }
16 16
 
17 17
   public static function formatTime(int $milliseconds): string {
18
-    $units = [ // Do not reorder the array order.
18
+    $units = [// Do not reorder the array order.
19 19
       31536000000 => ['1 year', '@count years'],
20 20
       2592000000 => ['1 month', '@count months'],
21 21
       604800000 => ['1 week', '@count weeks'],
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     $output = [];
31 31
     foreach ($units as $value => $string_pair) {
32 32
       if ($milliseconds >= $value) {
33
-        $output[]    = static::formatPlural((int) floor($milliseconds / $value), $string_pair[0], $string_pair[1]);
33
+        $output[] = static::formatPlural((int) floor($milliseconds / $value), $string_pair[0], $string_pair[1]);
34 34
         $milliseconds %= $value;
35 35
         $granularity--;
36 36
       }
Please login to merge, or discard this patch.