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 ( 6bcf7a...9715be )
by Jamie
10:17
created
src/Common/Api/Operator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -149,11 +149,11 @@
 block discarded – undo
149 149
             }
150 150
 
151 151
             $promise = new Promise(
152
-                function () use (&$promise, $realMethod, $args) {
152
+                function() use (&$promise, $realMethod, $args) {
153 153
                     $value = call_user_func_array([$this, $realMethod], $args);
154 154
                     $promise->resolve($value);
155 155
                 },
156
-                function ($e) use (&$promise) {
156
+                function($e) use (&$promise) {
157 157
                     $promise->reject($e);
158 158
                 }
159 159
             );
Please login to merge, or discard this patch.