From 1c24908d237a4f1594ac6072dcd7eb5d977c073a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Fri, 25 Feb 2022 18:18:43 +0800 Subject: [PATCH] modify plugin name --- Mysql/PDO.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Mysql/PDO.php b/Mysql/PDO.php index 106d4b9..c587a02 100644 --- a/Mysql/PDO.php +++ b/Mysql/PDO.php @@ -136,7 +136,6 @@ class PDO implements StopHeartbeatCheck */ public function beginTransaction() { - var_dump($this->_transaction); if ($this->_transaction == 0) { $this->_pdo()->beginTransaction(); } @@ -149,7 +148,7 @@ class PDO implements StopHeartbeatCheck */ public function commit() { - var_dump($this->_transaction); + echo __FUNCTION__, $this->_transaction, PHP_EOL; $this->_transaction--; if ($this->_transaction == 0) { $this->_pdo()->commit(); @@ -162,7 +161,7 @@ class PDO implements StopHeartbeatCheck */ public function rollback() { - var_dump($this->_transaction); + echo __FUNCTION__, $this->_transaction, PHP_EOL; $this->_transaction--; if ($this->_transaction == 0) { $this->_pdo()->rollBack();