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

@@ 700-704 (lines=5) @@
697
            $params = [$request, $response, $e];
698
        }
699
700
        if ($this->container->has($handler)) {
701
            $callable = $this->container->get($handler);
702
            // Call the registered handler
703
            return call_user_func_array($callable, $params);
704
        }
705
706
        // No handlers found, so just throw the exception
707
        throw $e;
@@ 725-729 (lines=5) @@
722
        $handler = 'phpErrorHandler';
723
        $params = [$request, $response, $e];
724
725
        if ($this->container->has($handler)) {
726
            $callable = $this->container->get($handler);
727
            // Call the registered handler
728
            return call_user_func_array($callable, $params);
729
        }
730
731
        // No handlers found, so just throw the exception
732
        throw $e;