@@ -9,7 +9,7 @@ |
||
9 | 9 | const USE_ENV_ARRAY = 16; |
10 | 10 | const LOCAL_FIRST = 32; |
11 | 11 | |
12 | - public static $options = 15; //All flags enabled |
|
12 | + public static $options = 15; //All flags enabled |
|
13 | 13 | public static $default = null; //Default value if not exists |
14 | 14 | |
15 | 15 | /** |
@@ -39,7 +39,7 @@ |
||
39 | 39 | if (self::$options & self::USE_ENV_ARRAY) { |
40 | 40 | $value = isset($_ENV[$name]) ? $_ENV[$name] : false; |
41 | 41 | } elseif ((self::$options & self::LOCAL_FIRST)) { |
42 | - $value = getenv($name, true) ?: getenv($name); |
|
42 | + $value = getenv($name, true) ?: getenv($name); |
|
43 | 43 | } else { |
44 | 44 | $value = getenv($name); |
45 | 45 | } |