2020-06-09 21:10:40 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Events;
|
|
|
|
|
2020-09-04 00:50:42 +08:00
|
|
|
use App\Contracts\Event;
|
2020-06-09 21:10:40 +08:00
|
|
|
use App\Models\Acars;
|
|
|
|
use App\Models\Pirep;
|
|
|
|
|
2020-09-04 00:50:42 +08:00
|
|
|
class AcarsUpdate extends Event
|
2020-06-09 21:10:40 +08:00
|
|
|
{
|
|
|
|
/** @var Pirep */
|
2022-03-14 23:45:18 +08:00
|
|
|
public Pirep $pirep;
|
2020-06-09 21:10:40 +08:00
|
|
|
|
|
|
|
/** @var Acars */
|
2022-03-14 23:45:18 +08:00
|
|
|
public Acars $acars;
|
2020-06-09 21:10:40 +08:00
|
|
|
|
|
|
|
public function __construct(Pirep $pirep, Acars $acars)
|
|
|
|
{
|
|
|
|
$this->pirep = $pirep;
|
|
|
|
$this->acars = $acars;
|
|
|
|
}
|
|
|
|
}
|