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 = 5-5 lines in 2 locations

Slim/App.php 2 locations

@@ 687-691 (lines=5) @@
684
        $handler = 'phpErrorHandler';
685
        $params = [$request, $response, $e];
686
687
        if ($this->container->has($handler)) {
688
            $callable = $this->container->get($handler);
689
            // Call the registered handler
690
            return call_user_func_array($callable, $params);
691
        }
692
    }
693
}
694
@@ 660-664 (lines=5) @@
657
            $params = [$request, $response, $e];
658
        }
659
660
        if ($this->container->has($handler)) {
661
            $callable = $this->container->get($handler);
662
            // Call the registered handler
663
            return call_user_func_array($callable, $params);
664
        }
665
666
        // No handlers found, so just throw the exception
667
        throw $e;