Update TestCase.php

This commit is contained in:
Dante 2022-02-26 02:40:01 -03:00 committed by GitHub
parent 217851c62d
commit 2ae840f538
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,10 +37,8 @@ class TestCase extends BaseTestCase
/** /**
* setUp * setUp
*
* @return void
*/ */
public function setUp() public function setUp(): void
{ {
$web3 = new Web3($this->testHost); $web3 = new Web3($this->testHost);
$this->web3 = $web3; $this->web3 = $web3;
@ -55,8 +53,6 @@ class TestCase extends BaseTestCase
/** /**
* tearDown * tearDown
*
* @return void
*/ */
public function tearDown() {} public function tearDown(): void {}
} }