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 ( 8f06a4...13c516 )
by Ayesh
01:32
created
src/Timer.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,7 @@
 block discarded – undo
38 38
   public static function start(string $key = 'default'): void {
39 39
     if (isset(self::$timers[$key])) {
40 40
       self::$timers[$key]->start();
41
-    }
42
-    else {
41
+    } else {
43 42
       self::$timers[$key] = new Stopwatch();
44 43
     }
45 44
   }
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.
src/Stopwatch.php 1 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.