Code Duplication    Length = 10-10 lines in 2 locations

includes/libs/rdbms/database/Database.php 2 locations

@@ 1773-1782 (lines=10) @@
1770
		return $tableName;
1771
	}
1772
1773
	public function tableNames() {
1774
		$inArray = func_get_args();
1775
		$retVal = [];
1776
1777
		foreach ( $inArray as $name ) {
1778
			$retVal[$name] = $this->tableName( $name );
1779
		}
1780
1781
		return $retVal;
1782
	}
1783
1784
	public function tableNamesN() {
1785
		$inArray = func_get_args();
@@ 1784-1793 (lines=10) @@
1781
		return $retVal;
1782
	}
1783
1784
	public function tableNamesN() {
1785
		$inArray = func_get_args();
1786
		$retVal = [];
1787
1788
		foreach ( $inArray as $name ) {
1789
			$retVal[] = $this->tableName( $name );
1790
		}
1791
1792
		return $retVal;
1793
	}
1794
1795
	/**
1796
	 * Get an aliased table name