phpvms/app/Events/PirepAccepted.php
2018-02-20 22:33:09 -06:00

24 lines
417 B
PHP

<?php
namespace App\Events;
use App\Models\Pirep;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class PirepAccepted
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $pirep;
/**
* Create a new event instance.
*/
public function __construct(Pirep $pirep)
{
//
}
}