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 ( 307cce...27531d )
by Jamie
04:17 queued 15s
created
src/Common/Api/Operator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      */
139 139
     public function __call($methodName, $args)
140 140
     {
141
-        $e = function ($name) {
141
+        $e = function($name) {
142 142
             return new \RuntimeException(sprintf('%s::%s is not defined', $name, get_class($this)));
143 143
         };
144 144
 
@@ -149,7 +149,7 @@  discard block
 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
                 }
Please login to merge, or discard this patch.