Skip to content

Commit a964425

Browse files
committed
Update interface so that coverage text does not fail the tests. (would have been found eventually, travis rules.)
1 parent 8ce5ec4 commit a964425

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Dflydev/DotAccessConfiguration/ConfigurationInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ public function append($key, $value = null);
3030
public function set($key, $value = null);
3131

3232
/**
33-
* Unset a key
33+
* Remove a key
3434
*
3535
* @param string $key
3636
*/
37-
public function unset($key);
37+
public function remove($key);
3838

3939
/**
4040
* Get the raw value for a key
@@ -50,7 +50,7 @@ public function get($key);
5050
* @param string $key
5151
* @return ConfigurationInterface
5252
*/
53-
public function getConfiguration($key)
53+
public function getConfiguration($key);
5454

5555
/**
5656
* Import data into existing configuration

0 commit comments

Comments
 (0)