We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb53169 commit 94666abCopy full SHA for 94666ab
composer.json
@@ -24,7 +24,6 @@
24
"issues": "https://github.com/filips123/ConfigWriter/issues/",
25
"source": "https://github.com/filips123/ConfigWriter/",
26
"docs": "https://github.com/filips123/ConfigWriter/wiki/"
27
-
28
},
29
"minimum-stability": "RC",
30
"prefer-stable": true,
tests/AbstractConfigTest.php
@@ -242,8 +242,8 @@ public function testOffsetGet()
242
*/
243
public function testOffsetExists()
244
{
245
- $this->assertTrue(isset($this->config['database']['host']));
246
- $this->assertFalse(isset($this->config['user']['password']));
+ $this->assertNotEmpty($this->config['database']['host']);
+ $this->assertEmpty($this->config['user']['password']);
247
}
248
249
/**
0 commit comments