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

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