Skip to content

Commit 67f3a35

Browse files
fix merge
1 parent f45252a commit 67f3a35

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
@@ -68,7 +68,7 @@ public function load(string $path, string ...$paths): void
6868
public function populate(array $values): void
6969
{
7070
$updateLoadedVars = false;
71-
$loadedVars = array_flip(explode(',', $_SERVER['SYMFONY_DOTENV_VARS'] ?? $_ENV['SYMFONY_DOTENV_VARS'] ?? '')));
71+
$loadedVars = array_flip(explode(',', $_SERVER['SYMFONY_DOTENV_VARS'] ?? $_ENV['SYMFONY_DOTENV_VARS'] ?? ''));
7272

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

0 commit comments

Comments
 (0)