mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-18 06:13:45 +02:00
Fix tests by adding required return type hints
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user