ionghitun /
lumen-start-app
| 1 | <?php |
||
| 2 | |||
| 3 | namespace App\Events; |
||
| 4 | |||
| 5 | use Illuminate\Queue\SerializesModels; |
||
| 6 | |||
| 7 | /** |
||
| 8 | * Class Event |
||
| 9 | * |
||
| 10 | * @package App\Events |
||
| 11 | */ |
||
| 12 | abstract class Event |
||
| 13 | { |
||
| 14 | use SerializesModels; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 15 | } |
||
| 16 |