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

phpmyfaq/inc/PMF/Installer.php 2 locations

@@ 943-947 (lines=5) @@
940
    public function cleanUpFiles()
941
    {
942
        // Remove 'index.php' file
943
        if (@unlink(dirname($_SERVER['PATH_TRANSLATED']).'/index.php')) {
944
            echo "<p class=\"alert alert-success\">The file <em>./setup/index.php</em> was deleted automatically.</p>\n";
945
        } else {
946
            echo "<p class=\"alert alert-danger\">Please delete the file <em>./setup/index.php</em> manually.</p>\n";
947
        }
948
        // Remove 'update.php' file
949
        if (@unlink(dirname($_SERVER['PATH_TRANSLATED']).'/update.php')) {
950
            echo "<p class=\"alert alert-success\">The file <em>./setup/update.php</em> was deleted automatically.</p>\n";
@@ 949-953 (lines=5) @@
946
            echo "<p class=\"alert alert-danger\">Please delete the file <em>./setup/index.php</em> manually.</p>\n";
947
        }
948
        // Remove 'update.php' file
949
        if (@unlink(dirname($_SERVER['PATH_TRANSLATED']).'/update.php')) {
950
            echo "<p class=\"alert alert-success\">The file <em>./setup/update.php</em> was deleted automatically.</p>\n";
951
        } else {
952
            echo "<p class=\"alert alert-danger\">Please delete the file <em>./setup/update.php</em> manually.</p>\n";
953
        }
954
    }
955
}
956