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 ( 8b5c99...edc9c4 )
by Ayesh
02:00
created
src/Timer.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@
 block discarded – undo
40 40
     static::$timers = [];
41 41
   }
42 42
 
43
+  /**
44
+   * @param string $format
45
+   */
43 46
   final static protected function processTimerValue($value, $format) {
44 47
     if ($value[0]) {
45 48
       return static::formatTime((static::getCurrentTime() - $value[1]) + $value[2], $format);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Ayesh\PHP_Timer;
5 5
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,8 +21,7 @@  discard block
 block discarded – undo
21 21
         static::$timers[$key][0] = true;
22 22
         static::$timers[$key][1] = static::getCurrentTime();
23 23
       }
24
-    }
25
-    else {
24
+    } else {
26 25
       static::$timers[$key] = [
27 26
         true,
28 27
         static::getCurrentTime(),
@@ -75,8 +74,7 @@  discard block
 block discarded – undo
75 74
       $ct = static::getCurrentTime();
76 75
       static::$timers[$key][0] = false;
77 76
       static::$timers[$key][2] += $ct - static::$timers[$key][1];
78
-    }
79
-    else {
77
+    } else {
80 78
       throw new \LogicException('Stopping timer when the given key timer was not initialized.');
81 79
     }
82 80
   }
Please login to merge, or discard this patch.