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); }