Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 975f58f

Browse filesBrowse files
committed
fixed typo in class name
1 parent dd67a45 commit 975f58f
Copy full SHA for 975f58f

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Dotenv/Tests/DotenvTest.php
+2-2Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.