mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
Adjust function signatures for newer PHPUnit versions
Will make an update to PHPUnit 8 or 9 easier.
This commit is contained in:
@@ -41,7 +41,7 @@ class PublicPropertiesTest extends TestCase {
|
||||
*
|
||||
* @access public
|
||||
*/
|
||||
public function setUp() {
|
||||
protected function setUp(): void {
|
||||
//setup parse CSV
|
||||
$this->csv = new Csv();
|
||||
|
||||
@@ -58,7 +58,7 @@ class PublicPropertiesTest extends TestCase {
|
||||
*
|
||||
* @access public
|
||||
*/
|
||||
public function tearDown() {
|
||||
protected function tearDown(): void {
|
||||
$this->csv = null;
|
||||
$this->reflection = null;
|
||||
$this->properties = null;
|
||||
|
||||
Reference in New Issue
Block a user