return type void is required as of PHPunit 7, breaking test compatibility with PHP < 7.1
This commit is contained in:
@@ -423,7 +423,7 @@ class ConfigurationCombinationsTest extends TestCase
|
||||
|
||||
private $_path;
|
||||
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
/* Setup Routine */
|
||||
Helper::confBackup();
|
||||
@@ -434,7 +434,7 @@ class ConfigurationCombinationsTest extends TestCase
|
||||
$this->reset();
|
||||
}
|
||||
|
||||
public function tearDown()
|
||||
public function tearDown(): void
|
||||
{
|
||||
/* Tear Down Routine */
|
||||
unlink(CONF);
|
||||
|
||||
Reference in New Issue
Block a user