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

@@ 295-297 (lines=3) @@
292
            FROM
293
                %sfaqcategories",
294
            PMF_Db::getTablePrefix());
295
        if (isset($this->language) && preg_match("/^[a-z\-]{2,}$/", $this->language)) {
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;
@@ 271-273 (lines=3) @@
268
        if (false == $parent_id && 0 < PMF_String::strlen($_query)) {
269
            $query .= PMF_String::substr($_query, 4);
270
        }
271
        if (isset($this->language) && preg_match("/^[a-z\-]{2,}$/", $this->language)) {
272
            $query .= " AND lang = '".$this->language."'";
273
        }
274
        $query .= " ORDER BY id";
275
        $result = $this->_config->getDb()->query($query);
276
        while ($row = $this->_config->getDb()->fetchArray($result)) {
@@ 1326-1328 (lines=3) @@
1323
            FROM
1324
                %sfaqcategories",
1325
            PMF_Db::getTablePrefix());
1326
        if (isset($this->language) && preg_match("/^[a-z\-]{2,}$/", $this->language)) {
1327
            $query .= " WHERE lang != '".$this->language."'";
1328
        }
1329
        $query .= ' ORDER BY id';
1330
        $result = $this->_config->getDb()->query($query);
1331
        while ($row = $this->_config->getDb()->fetchArray($result)) {