diff --git a/classes/Config.php b/classes/Config.php index 0da9ada..3598c36 100644 --- a/classes/Config.php +++ b/classes/Config.php @@ -240,7 +240,7 @@ class Config { foreach (get_object_vars($this) as $prop => $value) { $convert = new Convert($prop); - $env = getenv($convert->toSnake(true)); + $env = getenv($convert->toSnake()); if ($env) { $this->$prop = Yaml::parse($env); }