Skip to content

Commit

Permalink
public -> protected
Browse files Browse the repository at this point in the history
  • Loading branch information
joetannenbaum committed Nov 20, 2024
1 parent 75410d7 commit af3d0f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/DirectiveTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DirectiveTest extends TestCase
*/
protected const EXAMPLE_PAGE_OBJECT = ['component' => 'Foo/Bar', 'props' => ['foo' => 'bar'], 'url' => '/test', 'version' => '', 'encryptHistory' => false, 'clearHistory' => false];

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

Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ protected function getPackageProviders($app): array
];
}

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

Expand Down

0 comments on commit af3d0f3

Please sign in to comment.