Skip to content

Commit

Permalink
Update access modifier for setUp in ServiceProviderTest
Browse files Browse the repository at this point in the history
Changed the access modifier for setUp method from "protected" to "public" in ServiceProviderTest. This change ensures correct accessibility as per defined rules.
  • Loading branch information
Dropelikeit committed May 20, 2024
1 parent f6cad81 commit a369cd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Feature/ServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ final class ServiceProviderTest extends TestCase
{
private readonly Application $application;

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

Expand Down

0 comments on commit a369cd0

Please sign in to comment.