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

@@ 682-686 (lines=5) @@
679
            $params = [$request, $response, $e];
680
        }
681
682
        if ($this->container->has($handler)) {
683
            $callable = $this->container->get($handler);
684
            // Call the registered handler
685
            return call_user_func_array($callable, $params);
686
        }
687
688
        // No handlers found, so just throw the exception
689
        throw $e;
@@ 707-711 (lines=5) @@
704
        $handler = 'phpErrorHandler';
705
        $params = [$request, $response, $e];
706
707
        if ($this->container->has($handler)) {
708
            $callable = $this->container->get($handler);
709
            // Call the registered handler
710
            return call_user_func_array($callable, $params);
711
        }
712
713
        // No handlers found, so just throw the exception
714
        throw $e;