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 ( 7525b0...cbf992 )
by Ayesh
18s
created
src/Timer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -109,10 +109,10 @@
 block discarded – undo
109 109
    */
110 110
   private static function formatTime(float $value, string $format): string {
111 111
     return match ($format) {
112
-      static::FORMAT_MILLISECONDS => (string)round($value * 1000, 2),
113
-      static::FORMAT_SECONDS => (string)round($value, 3),
112
+      static::FORMAT_MILLISECONDS => (string) round($value * 1000, 2),
113
+      static::FORMAT_SECONDS => (string) round($value, 3),
114 114
       static::FORMAT_HUMAN => static::secondsToTimeString($value),
115
-      default => (string)($value * 1000),
115
+      default => (string) ($value * 1000),
116 116
     };
117 117
   }
118 118
 
Please login to merge, or discard this patch.