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

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