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 ( c43051...94ce39 )
by Matthew
37s
created
Sphpeme/ExpHandler/LambdaExpHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         list($lambda, $params) = $exp;
29 29
         $body = \array_slice($exp, 2);
30
-        return function (...$args) use ($env, $body, $params, $evaluate) {
30
+        return function(...$args) use ($env, $body, $params, $evaluate) {
31 31
             if (\count($params)) {
32 32
                 $env = ($this->envExtender)($env, new Env\SimpleEnv(array_combine($params, $args)));
33 33
             }
Please login to merge, or discard this patch.
Sphpeme/Reader.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,6 +28,9 @@  discard block
 block discarded – undo
28 28
         return new static(fopen($filepath, 'r+b'));
29 29
     }
30 30
 
31
+    /**
32
+     * @param resource $file
33
+     */
31 34
     private function __construct($file)
32 35
     {
33 36
         $this->quotes = [
@@ -41,7 +44,7 @@  discard block
 block discarded – undo
41 44
     }
42 45
 
43 46
     /**
44
-     * @param $token
47
+     * @param boolean|string $token
45 48
      * @return array|mixed
46 49
      * @throws \Exception
47 50
      */
Please login to merge, or discard this patch.