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 (#1894)
by
unknown
02:43
created
Slim/Router.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
             return $this->dispatcher;
189 189
         }
190 190
 
191
-        $routeDefinitionCallback = function (RouteCollector $r) {
191
+        $routeDefinitionCallback = function(RouteCollector $r) {
192 192
             foreach ($this->getRoutes() as $route) {
193 193
                 $r->addRoute($route->getMethods(), $route->getPattern(), $route->getIdentifier());
194 194
             }
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
             throw new \InvalidArgumentException("Tag must be a string");
239 239
         }
240 240
 
241
-        $routes = array_filter($this->routes, function ($route) use ($tag) {
241
+        $routes = array_filter($this->routes, function($route) use ($tag) {
242 242
             return $route->hasTag($tag);
243 243
         });
244 244
 
Please login to merge, or discard this patch.