22 lines
333 B
PHP
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;
|
|
}
|
|
}
|