Adjust function signatures for newer PHPUnit versions

Will make an update to PHPUnit 8 or 9 easier.
This commit is contained in:
Fonata
2021-04-03 00:04:58 +02:00
committed by Fonata
parent 3ce6a82052
commit 4518e944c4
9 changed files with 11 additions and 33 deletions

View File

@@ -15,7 +15,7 @@ class SaveTest extends TestCase {
/**
* Setup our test environment objects; will be called before each test.
*/
public function setUp() {
protected function setUp(): void {
$this->csv = new Csv();
$this->csv->auto(__DIR__ . '/../example_files/single_column.csv');