1 | <?php |
||
2 | |||
3 | namespace Sfneal\Events; |
||
4 | |||
5 | use Illuminate\Broadcasting\InteractsWithSockets; |
||
6 | use Illuminate\Foundation\Events\Dispatchable; |
||
7 | use Illuminate\Queue\SerializesModels; |
||
8 | |||
9 | /** |
||
10 | * Class AbstractEvent. |
||
11 | */ |
||
12 | abstract class Event |
||
13 | { |
||
14 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
15 | } |
||
16 |