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 (#2628)
by
unknown
01:41
created
Slim/Router.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 
202 202
     #KPHMOD FIX FOR NETBEANS INVOKATION
203 203
     if ($uri == '/') {
204
-        $uri = '/' . ltrim($request->getParam('path') , '/');
204
+        $uri = '/' . ltrim($request->getParam('path'), '/');
205 205
     }
206 206
         
207 207
         return $this->createDispatcher()->dispatch(
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
             return $this->dispatcher;
239 239
         }
240 240
 
241
-        $routeDefinitionCallback = function (RouteCollector $r) {
241
+        $routeDefinitionCallback = function(RouteCollector $r) {
242 242
             foreach ($this->getRoutes() as $route) {
243 243
                 $r->addRoute($route->getMethods(), $route->getPattern(), $route->getIdentifier());
244 244
             }
Please login to merge, or discard this patch.