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 = 3-3 lines in 2 locations

phpmyfaq/src/phpMyFAQ/Link.php 2 locations

@@ 387-389 (lines=3) @@
384
        if (!empty($this->url)) {
385
            $parsed = parse_url($this->url);
386
387
            if (isset($parsed['query'])) {
388
                $query['main'] = filter_var($parsed['query'], FILTER_SANITIZE_STRIPPED);
389
            }
390
            if (isset($parsed['fragment'])) {
391
                $query['fragment'] = filter_var($parsed['fragment'], FILTER_SANITIZE_STRIPPED);
392
            }
@@ 390-392 (lines=3) @@
387
            if (isset($parsed['query'])) {
388
                $query['main'] = filter_var($parsed['query'], FILTER_SANITIZE_STRIPPED);
389
            }
390
            if (isset($parsed['fragment'])) {
391
                $query['fragment'] = filter_var($parsed['fragment'], FILTER_SANITIZE_STRIPPED);
392
            }
393
        }
394
395
        return $query;