phpvms/app/Events/TestEvent.php
2018-03-19 20:50:40 -05:00

29 lines
502 B
PHP

<?php
namespace App\Events;
use App\Models\User;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
/**
* Class TestEvent
* @package App\Events
*/
class TestEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $user;
/**
* Create a new event instance.
* @param User $user
*/
public function __construct(User $user)
{
$this->user = $user;
}
}