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

modules/module/module.model.php 2 locations

@@ 1538-1542 (lines=5) @@
1535
			$table_count = count($tmp_files);
1536
			// Check if the table is created
1537
			$created_table_count = 0;
1538
			for($j=0;$j<count($tmp_files);$j++)
1539
			{
1540
				list($table_name) = explode(".",$tmp_files[$j]);
1541
				if($oDB->isTableExists($table_name)) $created_table_count ++;
1542
			}
1543
			// Check if DB is installed
1544
			if($table_count > $created_table_count) return true;
1545
			else return false;
@@ 1608-1612 (lines=5) @@
1605
			$table_count = count($tmp_files);
1606
			// Check if the table is created
1607
			$created_table_count = 0;
1608
			for($j=0;$j<$table_count;$j++)
1609
			{
1610
				list($table_name) = explode('.',$tmp_files[$j]);
1611
				if($oDB->isTableExists($table_name)) $created_table_count ++;
1612
			}
1613
			// Get information of the module
1614
			$info = NULL;
1615
			$info = $this->getModuleInfoXml($module_name);