chg: [internal] Micro optimisation

pull/8693/head
Jakub Onderka 2022-10-21 16:45:31 +02:00
parent cf8a642ba7
commit f3d0fcebbb
1 changed files with 1 additions and 2 deletions

View File

@ -161,8 +161,7 @@ class MysqlExtended extends Mysql
if ($this->fullDebug) {
$valuesList[] = $val;
}
$statement->bindValue($i, $val, $columnMap[$col]);
$i++;
$statement->bindValue($i++, $val, $columnMap[$col]);
}
}
$result = $statement->execute();