Fix tests by adding required return type hints

This commit is contained in:
devfrey 2020-05-09 18:00:52 +02:00
parent 6967b76ae6
commit 2fecba2500
94 changed files with 96 additions and 96 deletions

View file

@ -31,7 +31,7 @@ abstract class ApplicationApiIntegrationTestCase extends IntegrationTestCase
* Bootstrap application API tests. Creates a default admin user and associated API key
* and also sets some default headers required for accessing the API.
*/
public function setUp()
public function setUp(): void
{
parent::setUp();

View file

@ -18,7 +18,7 @@ class EggControllerTest extends ApplicationApiIntegrationTestCase
/**
* Setup tests.
*/
public function setUp()
public function setUp(): void
{
parent::setUp();

View file

@ -17,7 +17,7 @@ class NestControllerTest extends ApplicationApiIntegrationTestCase
/**
* Setup tests.
*/
public function setUp()
public function setUp(): void
{
parent::setUp();

View file

@ -12,7 +12,7 @@ abstract class IntegrationTestCase extends TestCase
/**
* Setup base integration test cases.
*/
public function setUp()
public function setUp(): void
{
parent::setUp();