From 06958be3524b0daa58ecfd471d093bad0b7e257f Mon Sep 17 00:00:00 2001 From: Thomas Meschke Date: Thu, 5 Sep 2024 12:28:12 +0200 Subject: [PATCH] Fix typo in BaseConnection.php --- system/Database/BaseConnection.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/Database/BaseConnection.php b/system/Database/BaseConnection.php index dce399bdefb5..56340c8decd5 100644 --- a/system/Database/BaseConnection.php +++ b/system/Database/BaseConnection.php @@ -784,9 +784,9 @@ public function transStart(bool $testMode = false): bool * * @return $this */ - public function transException(bool $transExcetion) + public function transException(bool $transException) { - $this->transException = $transExcetion; + $this->transException = $transException; return $this; }