Skip to content

Commit

Permalink
Changed identation
Browse files Browse the repository at this point in the history
  • Loading branch information
ewake committed Apr 3, 2019
1 parent 16fa8c4 commit 8e7cc15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Env.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static function get($name)
if (self::$options & self::USE_ENV_ARRAY) {
$value = isset($_ENV[$name]) ? $_ENV[$name] : false;
} elseif (self::$options & self::LOCAL_FIRST) {
$value = getenv($name, true) ?: getenv($name);
$value = getenv($name, true) ?: getenv($name);
} else {
$value = getenv($name);
}
Expand Down

0 comments on commit 8e7cc15

Please sign in to comment.