23 lines
366 B
PHP
23 lines
366 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Contracts\Event;
|
|
use App\Models\Acars;
|
|
use App\Models\Pirep;
|
|
|
|
class AcarsUpdate extends Event
|
|
{
|
|
/** @var Pirep */
|
|
public Pirep $pirep;
|
|
|
|
/** @var Acars */
|
|
public Acars $acars;
|
|
|
|
public function __construct(Pirep $pirep, Acars $acars)
|
|
{
|
|
$this->pirep = $pirep;
|
|
$this->acars = $acars;
|
|
}
|
|
}
|