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

@@ 645-649 (lines=5) @@
642
            $params = [$request, $response, $e];
643
        }
644
645
        if ($this->container->has($handler)) {
646
            $callable = $this->container->get($handler);
647
            // Call the registered handler
648
            return call_user_func_array($callable, $params);
649
        }
650
651
        // No handlers found, so just throw the exception
652
        throw $e;
@@ 670-674 (lines=5) @@
667
        $handler = 'phpErrorHandler';
668
        $params = [$request, $response, $e];
669
670
        if ($this->container->has($handler)) {
671
            $callable = $this->container->get($handler);
672
            // Call the registered handler
673
            return call_user_func_array($callable, $params);
674
        }
675
676
        // No handlers found, so just throw the exception
677
        throw $e;