diff --git a/test/TestCase.php b/test/TestCase.php index 51593d8..373a8b3 100644 --- a/test/TestCase.php +++ b/test/TestCase.php @@ -37,10 +37,8 @@ class TestCase extends BaseTestCase /** * setUp - * - * @return void */ - public function setUp() + public function setUp(): void { $web3 = new Web3($this->testHost); $this->web3 = $web3; @@ -55,8 +53,6 @@ class TestCase extends BaseTestCase /** * tearDown - * - * @return void */ - public function tearDown() {} -} \ No newline at end of file + public function tearDown(): void {} +}