File: /home/imensosw/www/mpl.imenso.co/app/Events/FanMarksEventAsNotInteresting.php
<?php
namespace App\Events;
use App\Models\Event;
use App\Models\User;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class FanMarksEventAsNotInteresting
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $fan;
public $event;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(User $fan, Event $event)
{
$this->fan = $fan;
$this->event = $event;
}
/*
* Get the channels the event should broadcast on.
*
* @return Channel|array
*/
}