added event abstract

This commit is contained in:
Denis Duliçi
2020-11-21 20:24:42 +03:00
parent 090b071769
commit c077cc4998
35 changed files with 80 additions and 136 deletions

12
app/Abstracts/Event.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace App\Abstracts;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
abstract class Event
{
use Dispatchable, InteractsWithSockets, SerializesModels;
}