Skip to content

Commit 99856a9

Browse files
Merge branch '4.1'
* 4.1: fix merge
2 parents 626a610 + 67f3a35 commit 99856a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Dotenv/Dotenv.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public function overload(string $path, string ...$extraPaths): void
102102
public function populate(array $values, bool $overrideExistingVars = false): void
103103
{
104104
$updateLoadedVars = false;
105-
$loadedVars = array_flip(explode(',', $_SERVER['SYMFONY_DOTENV_VARS'] ?? $_ENV['SYMFONY_DOTENV_VARS'] ?? '')));
105+
$loadedVars = array_flip(explode(',', $_SERVER['SYMFONY_DOTENV_VARS'] ?? $_ENV['SYMFONY_DOTENV_VARS'] ?? ''));
106106

107107
foreach ($values as $name => $value) {
108108
$notHttpName = 0 !== strpos($name, 'HTTP_');

0 commit comments

Comments
 (0)