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 3 locations

phpmyfaq/inc/PMF/Category.php 3 locations

@@ 275-277 (lines=3) @@
272
        }
273
        $query .= ' ORDER BY id';
274
        $result = $this->_config->getDb()->query($query);
275
        while ($row = $this->_config->getDb()->fetchArray($result)) {
276
            $this->categories[$row['id']] = $row;
277
        }
278
279
        return $this->categories;
280
    }
@@ 299-301 (lines=3) @@
296
            $query .= " WHERE lang = '".$this->language."'";
297
        }
298
        $result = $this->_config->getDb()->query($query);
299
        while ($row = $this->_config->getDb()->fetchArray($result)) {
300
            $this->categories[$row['id']] = $row;
301
        }
302
303
        return $this->categories;
304
    }
@@ 974-976 (lines=3) @@
971
        $num = $this->_config->getDb()->numRows($result);
972
        $this->categories = [];
973
        if ($num > 0) {
974
            while ($row = $this->_config->getDb()->fetchArray($result)) {
975
                $this->categories[intval($row['id'])] = $row;
976
            }
977
        }
978
979
        return $this->categories;