Skip to content

Commit

Permalink
Add missing test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
ppelgrims committed Feb 7, 2025
1 parent bde55d9 commit 1e51fd5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Laravel/Concerns/TestFixture/FakeAlternateEvent.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

declare(strict_types=1);

namespace Craftzing\TestBench\Laravel\Concerns\TestFixture;

final class FakeAlternateEvent
{

}
12 changes: 12 additions & 0 deletions src/Laravel/Concerns/TestFixture/FakeEvent.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

declare(strict_types=1);

namespace Craftzing\TestBench\Laravel\Concerns\TestFixture;

final readonly class FakeEvent
{
public function __construct(
public int $value = 0,
) {}
}

0 comments on commit 1e51fd5

Please sign in to comment.