8000 fixed typo in class name · symfony/symfony@975f58f · GitHub
[go: up one dir, main page]

Skip to content

Commit 975f58f

Browse files
committed
fixed typo in class name
1 parent dd67a45 commit 975f58f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ public function testOverload()
206206
file_put_contents($path1, 'FOO=BAR');
207207
file_put_contents($path2, 'BAR=BAZ');
208208

209-
(new DotEnv())->overload($path1, $path2);
209+
(new Dotenv())->overload($path1, $path2);
210210

211211
$foo = getenv('FOO');
212212
$bar = getenv('BAR');
@@ -267,7 +267,7 @@ public function testEnvVarIsOverriden()
267267
{
268268
putenv('TEST_ENV_VAR_OVERRIDEN=original_value');
269269

270-
$dotenv = new DotEnv();
270+
$dotenv = new Dotenv();
271271
$dotenv->populate(array('TEST_ENV_VAR_OVERRIDEN' => 'new_value'), true);
272272

273273
$this->assertSame('new_value', getenv('TEST_ENV_VAR_OVERRIDEN'));

0 commit comments

Comments
 (0)
0