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.

Code Duplication    Length = 3-3 lines in 2 locations

Slim/App.php 2 locations

@@ 348-350 (lines=3) @@
345
    protected function processInvalidMethod(ServerRequestInterface $request, ResponseInterface $response)
346
    {
347
        $router = $this->container->get('router');
348
        if (is_callable([$request->getUri(), 'getBasePath']) && is_callable([$router, 'setBasePath'])) {
349
            $router->setBasePath($request->getUri()->getBasePath());
350
        }
351
352
        $request = $this->dispatchRouterAndPrepareRoute($request, $router);
353
        $routeInfo = $request->getAttribute('routeInfo', [RouterInterface::DISPATCH_STATUS => Dispatcher::NOT_FOUND]);
@@ 384-386 (lines=3) @@
381
    {
382
        // Ensure basePath is set
383
        $router = $this->container->get('router');
384
        if (is_callable([$request->getUri(), 'getBasePath']) && is_callable([$router, 'setBasePath'])) {
385
            $router->setBasePath($request->getUri()->getBasePath());
386
        }
387
388
        // Dispatch the Router first if the setting for this is on
389
        if ($this->container->get('settings')['determineRouteBeforeAppMiddleware'] === true) {