Fix MySQLWrapper variable name

This commit is contained in:
crazywhalecc 2022-04-03 00:58:35 +08:00 committed by Jerry Ma
parent e40b3029e0
commit 7eea71e282

View File

@ -58,9 +58,9 @@ class MySQLWrapper
/**
* wrapper method
*/
public function setAutoCommit(bool $autoCommit)
public function setAutoCommit(bool $auto_commit)
{
$this->connection->setAutoCommit($autoCommit);
$this->connection->setAutoCommit($auto_commit);
}
/**