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 ( c4fd22...d26df2 )
by Hong
02:46
created
src/Phossa2/Event/Traits/SharedManagerTrait.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -50,6 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     /**
52 52
      * {@inheritDoc}
53
+     * @param string $scope
53 54
      */
54 55
     public static function onEvent(
55 56
         $scope,
@@ -67,6 +68,7 @@  discard block
 block discarded – undo
67 68
 
68 69
     /**
69 70
      * {@inheritDoc}
71
+     * @param string $scope
70 72
      */
71 73
     public static function offEvent(
72 74
         $scope,
Please login to merge, or discard this patch.
src/Phossa2/Event/EventQueue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
      */
185 185
     protected function fixPriority(/*# int */ $priority)/*# : int */
186 186
     {
187
-        return (int)($priority > 100 ? 100 : ($priority < -100 ? -100 : $priority));
187
+        return (int) ($priority > 100 ? 100 : ($priority < -100 ? -100 : $priority));
188 188
     }
189 189
 
190 190
     /**
Please login to merge, or discard this patch.