Skip to content

Commit

Permalink
refactor: set setUp() method modifier protected on tests (#1202)
Browse files Browse the repository at this point in the history
  • Loading branch information
spiralbot committed Jan 10, 2025
1 parent 26375b0 commit 8aa241e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/JobTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class JobTest extends TestCase
/** @var RendererInterface */
protected $renderer;

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

Expand Down
2 changes: 1 addition & 1 deletion tests/RenderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function defineDirectories(string $root): array
] + parent::defineDirectories($root);
}

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

Expand Down

0 comments on commit 8aa241e

Please sign in to comment.