Fix tests by adding required return type hints
This commit is contained in:
parent
6967b76ae6
commit
2fecba2500
94 changed files with 96 additions and 96 deletions
|
@ -12,7 +12,7 @@ abstract class TestCase extends BaseTestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
@ -22,7 +22,7 @@ abstract class TestCase extends BaseTestCase
|
|||
/**
|
||||
* Tear down tests.
|
||||
*/
|
||||
protected function tearDown()
|
||||
protected function tearDown(): void
|
||||
{
|
||||
parent::tearDown();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue