Skip to content

Commit

Permalink
Updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet committed Nov 20, 2024
1 parent 6e2f0f2 commit f6ff916
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion demo-app/tests/Feature/DispatchBaseUrlRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class DispatchBaseUrlRequestTest extends TestCase
{
protected DispatchBaseUrlRequest $dispatcher;

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

Expand Down
2 changes: 1 addition & 1 deletion demo-app/tests/Feature/RedirectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class RedirectorTest extends TestCase

protected Request $request;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();
$this->urlGenerator = app(UrlGenerator::class);
Expand Down
4 changes: 2 additions & 2 deletions demo-app/tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ abstract class TestCase extends BaseTestCase
use ModalTestCase;
use RefreshDatabase;

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

$this->withoutVite();
Carbon::setTestNow('2024-06-01 12:00:00');
}

public function tearDown(): void
protected function tearDown(): void
{
Carbon::setTestNow();
parent::tearDown();
Expand Down

0 comments on commit f6ff916

Please sign in to comment.