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 ( c8aec6...24d2a1 )
by Ayesh
02:02 queued 50s
created
src/Timer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
    * @param string $format The default format is milliseconds. See the class constants for additional
84 84
    *   formats.
85 85
    *
86
-   * @return mixed The formatted time, formatted by the formatter string passed for $format.
86
+   * @return string The formatted time, formatted by the formatter string passed for $format.
87 87
    * @throws \LogicException
88 88
    * If the timer was not started, a \LogicException will be thrown. Use @see \Ayesh\PHP_Timer\Timer::start()
89 89
    * to start a timer.
Please login to merge, or discard this patch.
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 $miliseconds): 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 ($miliseconds >= $value) {
33
-        $output[]    = static::formatPlural((int) floor($miliseconds / $value), $string_pair[0], $string_pair[1]);
33
+        $output[] = static::formatPlural((int) floor($miliseconds / $value), $string_pair[0], $string_pair[1]);
34 34
         $miliseconds %= $value;
35 35
         $granularity--;
36 36
       }
Please login to merge, or discard this patch.