Skip to content

Commit

Permalink
fix: Empty values are treated as nulls
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Jan 3, 2017
1 parent 342d970 commit b07b572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/josegonzalez/Dotenv/LoaderTest.php
Expand Up @@ -143,7 +143,7 @@ public function testParse()
'STRING_FALSE' => 'false',
'STRING_EMPTY' => '',
'STRING_EMPTY_2' => '',
'NO_VALUE_INLINE_COMMENT' => '',
'NO_VALUE_INLINE_COMMENT' => null,
), $environment);

$this->Loader->setFilepath($this->fixturePath . 'cake.env');
Expand Down

0 comments on commit b07b572

Please sign in to comment.