It seems like the GitHub access token used for retrieving details about this repository from
GitHub became invalid. This might prevent certain types of inspections from being run (in
particular,
everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by ProtoneMedia\AnalyticsEv...bs\SendEventToAnalytics: $id, $relations, $class, $keyBy
Loading history...
16
17
public $event;
18
public ?string $clientId;
19
public ?string $userId;
20
21
public function __construct($event, string $clientId = null, string $userId = null)
22
{
23
$this->event = $event;
24
$this->clientId = $clientId;
25
$this->userId = $userId;
26
}
27
28
public function handle(EventBroadcaster $broadcaster)