Code Duplication    Length = 10-10 lines in 2 locations

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

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