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.
Passed
Push — master ( 8953ec...b67269 )
by
unknown
07:42
created
src/Promise.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -78,6 +78,9 @@  discard block
 block discarded – undo
78 78
         $this->cancelCallback = $callback;
79 79
     }
80 80
 
81
+    /**
82
+     * @param integer $state
83
+     */
81 84
     private function validateState($value, $state)
82 85
     {
83 86
         if ($this->state !== self::STATE_PENDING) {
@@ -273,6 +276,9 @@  discard block
 block discarded – undo
273 276
         }
274 277
     }
275 278
 
279
+    /**
280
+     * @param integer $index
281
+     */
276 282
     private static function invokeContext($context, $index, $value)
277 283
     {
278 284
         $promise = $context[0];
@@ -294,6 +300,9 @@  discard block
 block discarded – undo
294 300
         }
295 301
     }
296 302
 
303
+    /**
304
+     * @param integer $state
305
+     */
297 306
     private function setState($state)
298 307
     {
299 308
         if ($state !== self::STATE_PENDING &&
Please login to merge, or discard this patch.