phpvms/app/Events/AcarsUpdate.php
2020-06-09 09:10:40 -04:00

22 lines
333 B
PHP

<?php
namespace App\Events;
use App\Models\Acars;
use App\Models\Pirep;
class AcarsUpdate extends BaseEvent
{
/** @var Pirep */
public $pirep;
/** @var Acars */
public $acars;
public function __construct(Pirep $pirep, Acars $acars)
{
$this->pirep = $pirep;
$this->acars = $acars;
}
}