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
Pull Request — 3.x (#2015)
by Glenn
02:31
created
Slim/Handlers/NotFound.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * Return a response for application/json content not found
64 64
      *
65
-     * @return ResponseInterface
65
+     * @return string
66 66
      */
67 67
     protected function renderJsonNotFoundOutput()
68 68
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * Return a response for xml content not found
74 74
      *
75
-     * @return ResponseInterface
75
+     * @return string
76 76
      */
77 77
     protected function renderXmlNotFoundOutput()
78 78
     {
Please login to merge, or discard this patch.
Slim/Http/Request.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -783,7 +783,7 @@
 block discarded – undo
783 783
      * These values MAY be prepared from $_FILES or the message body during
784 784
      * instantiation, or MAY be injected via withUploadedFiles().
785 785
      *
786
-     * @return array An array tree of UploadedFileInterface instances; an empty
786
+     * @return UploadedFileInterface[] An array tree of UploadedFileInterface instances; an empty
787 787
      *     array MUST be returned if no data is present.
788 788
      */
789 789
     public function getUploadedFiles()
Please login to merge, or discard this patch.
Slim/Route.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     /**
73 73
      * Create new route
74 74
      *
75
-     * @param string|string[]   $methods The route HTTP methods
75
+     * @param string[]   $methods The route HTTP methods
76 76
      * @param string            $pattern The route pattern
77 77
      * @param callable          $callable The route callable
78 78
      * @param RouteGroup[]      $groups The parent route groups
Please login to merge, or discard this patch.
Slim/Router.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
      *
184 184
      * @param  string[] $methods Array of HTTP methods
185 185
      * @param  string   $pattern The route pattern
186
-     * @param  callable $handler The route callable
186
+     * @param callable $callable
187 187
      *
188 188
      * @return \Slim\Interfaces\RouteInterface
189 189
      */
Please login to merge, or discard this patch.