From 2ae840f538d2ea61758fa35b89a69eb302174d2c Mon Sep 17 00:00:00 2001 From: Dante <35383529+srdante@users.noreply.github.com> Date: Sat, 26 Feb 2022 02:40:01 -0300 Subject: [PATCH] Update TestCase.php --- test/TestCase.php | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) 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 {} +}