Skip to content

Commit 5e39f65

Browse files
committed
fix void return result
1 parent f51c4a6 commit 5e39f65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/helper/AbstractConfigurationInstance.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function get($key)
4242
*/
4343
public function set($key, $value)
4444
{
45-
return parent::set($key, $value);
45+
parent::set($key, $value);
4646
}
4747

4848
/**
@@ -52,7 +52,7 @@ public function set($key, $value)
5252
*/
5353
public function remove($key)
5454
{
55-
return parent::remove($key);
55+
parent::remove($key);
5656
}
5757

5858
/**

0 commit comments

Comments
 (0)