Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiandedeyne authored and actions-user committed Sep 20, 2024
1 parent cf90636 commit fbf5e0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/EventSubscriberTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,13 +197,13 @@
it('only queues event if event has async handler', function () {
Bus::fake();

$syncProjector = new class extends Projector {
$syncProjector = new class () extends Projector {
public function onMoneyAddedEvent(MoneyAddedEvent $event)
{
}
};

$asyncProjector = new class extends Projector implements ShouldQueue {
$asyncProjector = new class () extends Projector implements ShouldQueue {
public function onMoneySubtractedEvent(MoneySubtractedEvent $event)
{
}
Expand Down

0 comments on commit fbf5e0d

Please sign in to comment.