phpvms/app/Events/AcarsUpdate.php

23 lines
366 B
PHP
Raw Normal View History

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