8000 Merge branch '5.3' into 5.4 · symfony/symfony@d859d89 · GitHub
[go: up one dir, main page]

Skip to content

Commit d859d89

Browse files
committed
Merge branch '5.3' into 5.4
* 5.3: do not pass a boolean to the constructor of the Dotenv class
2 parents 5bb0ebe + e5d6b8d commit d859d89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Dotenv/Tests/DotenvTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ public function testSERVERVarsDuplicationInENV()
544544
unset($_ENV['SYMFONY_DOTENV_VARS'], $_SERVER['SYMFONY_DOTENV_VARS'], $_ENV['FOO']);
545545
$_SERVER['FOO'] = 'CCC';
546546

547-
(new Dotenv(false))->populate(['FOO' => 'BAR']);
547+
(new Dotenv())->populate(['FOO' => 'BAR']);
548548

549549
$this->assertSame('CCC', $_ENV['FOO']);
550550
}

0 commit comments

Comments
 (0)
0