From d7c8425c6cc94a12f39e17ee13988867e9e2fa5c Mon Sep 17 00:00:00 2001 From: Andrey Akulinsky Date: Wed, 15 Oct 2025 11:46:07 +0300 Subject: [PATCH] fix: error in variable name --- src/Db/Core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Db/Core.php b/src/Db/Core.php index 267b30e..59d1e33 100644 --- a/src/Db/Core.php +++ b/src/Db/Core.php @@ -358,7 +358,7 @@ public function connection($connection = null) return $this->connections[$connection]; } - if (!($this->connection['default'] ?? false) && $this->config('deferred')) { + if (!($this->connections['default'] ?? false) && $this->config('deferred')) { $this->connections['default'] = $this->connectSync($this->config('deferred')); }