Add additional events for PIREP states #436 (#548)

This commit is contained in:
Nabeel S
2020-02-11 13:56:20 -05:00
committed by GitHub
parent 39159e2c2e
commit f392bf1cb8
5 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Events;
use App\Models\Pirep;
class PirepUpdated extends BaseEvent
{
public $pirep;
public function __construct(Pirep $pirep)
{
$this->pirep = $pirep;
}
}