From 0900304c17df3f41e48fc27ccd78163bd16df5aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Fri, 25 Feb 2022 18:40:41 +0800 Subject: [PATCH] modify plugin name --- Mysql/PDO.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Mysql/PDO.php b/Mysql/PDO.php index 03b3232..caa92df 100644 --- a/Mysql/PDO.php +++ b/Mysql/PDO.php @@ -74,7 +74,6 @@ class PDO implements StopHeartbeatCheck */ public function inTransaction(): bool { - echo __FUNCTION__, $this->_transaction, PHP_EOL; return $this->_transaction > 0; } @@ -141,8 +140,6 @@ class PDO implements StopHeartbeatCheck $this->_pdo()->beginTransaction(); } $this->_transaction++; - - echo __FUNCTION__, $this->_transaction, PHP_EOL; } @@ -151,7 +148,6 @@ class PDO implements StopHeartbeatCheck */ public function commit() { - echo __FUNCTION__, $this->_transaction, PHP_EOL; $this->_transaction--; if ($this->_transaction == 0) { $this->_pdo()->commit(); @@ -164,7 +160,6 @@ class PDO implements StopHeartbeatCheck */ public function rollback() { - echo __FUNCTION__, $this->_transaction, PHP_EOL; $this->_transaction--; if ($this->_transaction == 0) { $this->_pdo()->rollBack();