diff --git a/classes/Config.php b/classes/Config.php index 3598c36..367c0cb 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()); + $env = getenv($convert->toMacro()); if ($env) { $this->$prop = Yaml::parse($env); }