PMCORE-3877
This commit is contained in:
committed by
Mauricio Veliz
parent
d0c5a23d67
commit
3f6f6c5a30
@@ -24,7 +24,7 @@ class AdditionalTablesTest extends TestCase
|
||||
/**
|
||||
* Set up method.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
if (version_compare(phpversion(), 7.3, '>') ) {
|
||||
$this->markTestSkipped('The changes in third party are not available');
|
||||
|
||||
@@ -26,7 +26,7 @@ class AppNotesTest extends TestCase
|
||||
/**
|
||||
* Set up method
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->faker = Factory::create();
|
||||
|
||||
@@ -15,7 +15,7 @@ class ListCanceledTest extends TestCase
|
||||
/**
|
||||
* Set up method.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->faker = Factory::create();
|
||||
@@ -25,7 +25,7 @@ class ListCanceledTest extends TestCase
|
||||
/**
|
||||
* Tear down method,
|
||||
*/
|
||||
public function tearDown()
|
||||
public function tearDown(): void
|
||||
{
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ class ListCompletedTest extends TestCase
|
||||
/**
|
||||
* Set up method.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->faker = Factory::create();
|
||||
@@ -25,7 +25,7 @@ class ListCompletedTest extends TestCase
|
||||
/**
|
||||
* Tear down method,
|
||||
*/
|
||||
public function tearDown()
|
||||
public function tearDown(): void
|
||||
{
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ class ListInboxTest extends TestCase
|
||||
/**
|
||||
* Set up method.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->faker = Factory::create();
|
||||
@@ -25,7 +25,7 @@ class ListInboxTest extends TestCase
|
||||
/**
|
||||
* Tear down method,
|
||||
*/
|
||||
public function tearDown()
|
||||
public function tearDown(): void
|
||||
{
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ class ListMyInboxTest extends TestCase
|
||||
/**
|
||||
* Set up method.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->faker = Factory::create();
|
||||
@@ -25,7 +25,7 @@ class ListMyInboxTest extends TestCase
|
||||
/**
|
||||
* Tear down method,
|
||||
*/
|
||||
public function tearDown()
|
||||
public function tearDown(): void
|
||||
{
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ class ListParticipatedHistoryTest extends TestCase
|
||||
/**
|
||||
* Set up method.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->faker = Factory::create();
|
||||
@@ -25,7 +25,7 @@ class ListParticipatedHistoryTest extends TestCase
|
||||
/**
|
||||
* Tear down method,
|
||||
*/
|
||||
public function tearDown()
|
||||
public function tearDown(): void
|
||||
{
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ class ListParticipatedLastTest extends TestCase
|
||||
/**
|
||||
* Set up method.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->faker = Factory::create();
|
||||
@@ -25,7 +25,7 @@ class ListParticipatedLastTest extends TestCase
|
||||
/**
|
||||
* Tear down method,
|
||||
*/
|
||||
public function tearDown()
|
||||
public function tearDown(): void
|
||||
{
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ class ListPausedTest extends TestCase
|
||||
/**
|
||||
* Set up method.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->faker = Factory::create();
|
||||
@@ -25,7 +25,7 @@ class ListPausedTest extends TestCase
|
||||
/**
|
||||
* Tear down method,
|
||||
*/
|
||||
public function tearDown()
|
||||
public function tearDown(): void
|
||||
{
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ class ListUnassignedTest extends TestCase
|
||||
/**
|
||||
* Set up method.
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->faker = Factory::create();
|
||||
@@ -25,7 +25,7 @@ class ListUnassignedTest extends TestCase
|
||||
/**
|
||||
* Tear down method,
|
||||
*/
|
||||
public function tearDown()
|
||||
public function tearDown(): void
|
||||
{
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user