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
Branch master (0dc8c6)
by Ayesh
01:47
created
src/Timer.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,8 +49,7 @@  discard block
 block discarded – undo
49 49
         self::$timers[$key][0] = true;
50 50
         self::$timers[$key][1] = self::getCurrentTime();
51 51
       }
52
-    }
53
-    else {
52
+    } else {
54 53
       self::$timers[$key] = [
55 54
         true,
56 55
         self::getCurrentTime(),
@@ -143,8 +142,7 @@  discard block
 block discarded – undo
143 142
       $ct = self::getCurrentTime();
144 143
       self::$timers[$key][0] = false;
145 144
       self::$timers[$key][2] += $ct - self::$timers[$key][1];
146
-    }
147
-    else {
145
+    } else {
148 146
       throw new \LogicException('Stopping timer when the given key timer was not initialized.');
149 147
     }
150 148
   }
Please login to merge, or discard this patch.