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

@@ -19,7 +19,7 @@ class BaseClass extends TestCase {
* Setup
* Setup our test environment objects
*/
protected function setUp() {
protected function setUp(): void {
$this->csv = new Csv();
}