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 ( d26df2...528403 )
by Hong
04:12
created
src/Phossa2/Event/EventQueue.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -184,8 +184,7 @@
 block discarded – undo
184 184
      */
185 185
     protected function fixPriority(/*# int */ $priority)/*# : int */
186 186
     {
187
-        return (int) ($priority > 100 ? 100 :
188
-            ($priority < -100 ? -100 : $priority));
187
+        return (int) ($priority > 100 ? 100 : ($priority < -100 ? -100 : $priority));
189 188
     }
190 189
 
191 190
     /**
Please login to merge, or discard this patch.