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 ( 97406c...3cea9d )
by Gilles
02:24
created
src/Trampoline.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
             $return = $f;
57 57
         } else if(is_callable($f)) {
58 58
             $return = call_user_func_array($f, $args);
59
-        } else  {
59
+        } else {
60 60
             throw new \RuntimeException('Expected a callable or an instance of Trampoline.');
61 61
         }
62 62
 
Please login to merge, or discard this patch.
src/Pool.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     {
21 21
         if($f instanceof \Closure) {
22 22
             $this->f = $f->bindTo($this);
23
-        } elseif(method_exists('\Closure','fromCallable')) {
23
+        } elseif(method_exists('\Closure', 'fromCallable')) {
24 24
             $this->f = \Closure::fromCallable($f)->bindTo($this);
25 25
         } else {
26 26
             throw new \RuntimeException('Using anything else than a callable is only possible for PHP >= 7.1.');
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         if($this->recursing === false) {
41 41
             $this->recursing = true;
42 42
 
43
-            while(! empty($this->arguments_pool)) {
43
+            while(!empty($this->arguments_pool)) {
44 44
                 $result = call_user_func_array($this->f, array_shift($this->arguments_pool));
45 45
             }
46 46
 
Please login to merge, or discard this patch.