phpvms/app/Events/PirepRejected.php

29 lines
516 B
PHP
Raw Normal View History

2017-12-03 00:55:17 +08:00
<?php
namespace App\Events;
use App\Models\Pirep;
use Illuminate\Broadcasting\InteractsWithSockets;
2018-02-21 12:33:09 +08:00
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
2017-12-03 00:55:17 +08:00
/**
* Class PirepRejected
* @package App\Events
*/
2017-12-03 00:55:17 +08:00
class PirepRejected
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $pirep;
/**
* PirepRejected constructor.
* @param Pirep $pirep
*/
2017-12-03 00:55:17 +08:00
public function __construct(Pirep $pirep)
{
$this->pirep = $pirep;
}
}