Skip to content

Commit 1f35616

Browse files
committed
debug
1 parent 697e4d7 commit 1f35616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/MySQLReplication/Tools.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Tools
88
{
99
public static function getFromEnv(string $name, null|int|string $default = null): null|int|string
1010
{
11-
$value = $_ENV[$name] ?: null;
11+
$value = getenv($name) ?: null;
1212
return $value ?? $default;
1313
}
1414
}

0 commit comments

Comments
 (0)