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 ( b5fc5e...63273e )
by
unknown
10:21
created
src/Context/ContextStack.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
         return new static;
24 24
     }
25 25
 
26
+    /**
27
+     * @param \Closure $handler
28
+     */
26 29
     public function store($handler, $value = [])
27 30
     {
28 31
         if ($handler instanceof \Closure) {
Please login to merge, or discard this patch.
src/Promise.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@  discard block
 block discarded – undo
52 52
         $this->trigger($value);
53 53
     }
54 54
 
55
+    /**
56
+     * @param \Exception $reason
57
+     */
55 58
     public function reject($reason)
56 59
     {
57 60
         $this->setState(self::STATE_REJECTED);
@@ -110,6 +113,9 @@  discard block
 block discarded – undo
110 113
         }
111 114
     }
112 115
 
116
+    /**
117
+     * @param integer $index
118
+     */
113 119
     private static function invokeContext($context, $index, $value)
114 120
     {
115 121
         $promise = $context[0];
@@ -131,6 +137,9 @@  discard block
 block discarded – undo
131 137
         }
132 138
     }
133 139
 
140
+    /**
141
+     * @param integer $state
142
+     */
134 143
     private function setState($state)
135 144
     {
136 145
         if ($state !== self::STATE_PENDING &&
Please login to merge, or discard this patch.