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
|
@ -23,7 +23,7 @@ class EggConfigurationServiceTest extends TestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ class EggCreationServiceTest extends TestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ class EggDeletionServiceTest extends TestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ class EggUpdateServiceTest extends TestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ class InstallScriptServiceTest extends TestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ class EggExporterServiceTest extends TestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ class EggImporterServiceTest extends TestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ class EggUpdateImporterServiceTest extends TestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ class VariableCreationServiceTest extends TestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ class VariableUpdateServiceTest extends TestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
Reference in a new issue