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
|
@ -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();
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ class EggControllerTest extends ApplicationApiIntegrationTestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ class NestControllerTest extends ApplicationApiIntegrationTestCase
|
|||
/**
|
||||
* Setup tests.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ abstract class IntegrationTestCase extends TestCase
|
|||
/**
|
||||
* Setup base integration test cases.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue