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

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