Skip to content

Commit

Permalink
Fix setUp and tearDown visibility. (#43052)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmichot committed Jul 4, 2022
1 parent 6e02015 commit 01e1474
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Integration/Support/PluralizerPortugueseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@

class PluralizerPortugueseTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Pluralizer::useLanguage('portuguese');
}

public function tearDown(): void
protected function tearDown(): void
{
parent::tearDown();

Expand Down

0 comments on commit 01e1474

Please sign in to comment.