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 ( e56d5b...edeb12 )
by Ayesh
01:26
created
src/Timer.php 2 patches
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.
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.