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/Pagination.php 2 locations

@@ 286-290 (lines=5) @@
283
        $adjacents = floor($this->adjacents/2) >= 1 ? floor($this->adjacents/2) : 1;
284
285
        for ($page = 1; $page <= $pages; ++$page) {
286
            if ($page > $this->adjacents && $page < $this->currentPage - $adjacents) {
287
                $content[] = '<li class="disabled"><a>&hellip;</a></li>';
288
                $page = $this->currentPage - $adjacents - 1;
289
                continue;
290
            }
291
292
            if ($page > $this->currentPage + $adjacents && $page <= $pages - $this->adjacents) {
293
                $content[] = '<li class="disabled"><a>&hellip;</a></li>';
@@ 292-296 (lines=5) @@
289
                continue;
290
            }
291
292
            if ($page > $this->currentPage + $adjacents && $page <= $pages - $this->adjacents) {
293
                $content[] = '<li class="disabled"><a>&hellip;</a></li>';
294
                $page = $pages - $this->adjacents;
295
                continue;
296
            }
297
298
            $link = $this->renderUrl($this->baseUrl, $page);
299