Skip to content

Commit

Permalink
Fix Serializes importation in event.stub
Browse files Browse the repository at this point in the history
  • Loading branch information
papac authored Sep 21, 2024
1 parent 162b25c commit 205a30d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/stubs/event.stub
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ namespace {baseNamespace}{namespace};

use Bow\Event\Contracts\AppEvent;
use Bow\Event\Dispatchable;
use Bow\Queue\Traits\SerializesModels;
use Bow\Support\Serializes;

class {className} implements AppEvent
{
use Dispatchable, SerializesModels;
use Dispatchable, Serializes;

/**
* Create a new event instance.
Expand Down

0 comments on commit 205a30d

Please sign in to comment.