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/src/phpMyFAQ/Faq.php 2 locations

@@ 1931-1935 (lines=5) @@
1928
                AND fd.lang = fv.lang
1929
                AND fd.active = \'yes\'';
1930
1931
        if (isset($categoryId) && is_numeric($categoryId) && ($categoryId != 0)) {
1932
            $query .= '
1933
            AND
1934
                fcr.category_id = \'' . $categoryId.'\'';
1935
        }
1936
        if (isset($language) && Language::isASupportedLanguage($language)) {
1937
            $query .= '
1938
            AND
@@ 2045-2049 (lines=5) @@
2042
                AND fd.id = fv.artikel
2043
                AND fd.active = \'yes\'';
2044
2045
        if (isset($categoryId) && is_numeric($categoryId) && ($categoryId != 0)) {
2046
            $query .= '
2047
            AND
2048
                fcr.category_id = \'' . $categoryId.'\'';
2049
        }
2050
        if (isset($language) && Language::isASupportedLanguage($language)) {
2051
            $query .= '
2052
            AND