From 7e67952874a6c0be60df009aa00f167ba16208c4 Mon Sep 17 00:00:00 2001 From: zyimm Date: Thu, 24 Aug 2023 14:12:29 +0800 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89back=5Furl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/connection/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection/Config.php b/src/connection/Config.php index 1350479..f2b6a29 100644 --- a/src/connection/Config.php +++ b/src/connection/Config.php @@ -15,7 +15,7 @@ class Config { foreach ($configs as $key => $val) { - $method = $this->camelCase($key); + $method = 'set'.$this->camelCase($key); if (method_exists($method, $this)) { call_user_func([$this, $method], $val); }