2019-11-20 23:16:01 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Events;
|
|
|
|
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
class BaseEvent
|
|
|
|
{
|
2020-01-10 22:41:32 +08:00
|
|
|
use Dispatchable;
|
|
|
|
use InteractsWithSockets;
|
|
|
|
use SerializesModels;
|
2019-11-20 23:16:01 +08:00
|
|
|
}
|