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 ( 4041f9...e56d5b )
by Ayesh
01:27
created
src/Timer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,11 +127,11 @@
 block discarded – undo
127 127
     foreach (self::TIMES as $unit => $value) {
128 128
       if ($ms >= $value) {
129 129
         $time = floor($ms / $value * 100.0) / 100.0;
130
-        return $time . ' ' . ($time == 1 ? $unit : $unit . 's');
130
+        return $time.' '.($time == 1 ? $unit : $unit.'s');
131 131
       }
132 132
     }
133 133
 
134
-    return $ms . ' ms';
134
+    return $ms.' ms';
135 135
   }
136 136
 
137 137
   /**
Please login to merge, or discard this patch.