Issues (1)

src/Events/Event.php (1 issue)

Severity
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
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by Sfneal\Events\Event: $id, $relations, $class, $connection, $keyBy
Loading history...
15
}
16