Fix #18495 - Coding standard fixes

Ref: fc98aff6d3

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2023-11-16 17:06:01 +01:00
parent fc98aff6d3
commit a54e97f63d
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -2615,16 +2615,17 @@ class ExportSql extends ExportPlugin
/**
* replaces db/table/column names with their aliases
*
* @param string $sqlQuery SQL query in which aliases are to be substituted
* @param array $aliases Alias information for db/table/column
* @param string $db the database name
* @param string $table the tablename
* @param string $flag the flag denoting whether any replacement was done
* @param string|null $delimiter The delimiter for the parser (";" or "$$")
* @param string $sqlQuery SQL query in which aliases are to be substituted
* @param array $aliases Alias information for db/table/column
* @param string $db the database name
* @param string $table the tablename
* @param string $flag the flag denoting whether any replacement was done
*
* @return string query replaced with aliases
*/
public function replaceWithAliases(
string|null $delimiter,
?string $delimiter,
$sqlQuery,
array $aliases,
$db,