e99c22b007
* Emails not sending #795 #722 * Fix for news items not being sent; refactor some events; check for opt-in #722 * Formatting * Remove extra parameter
23 lines
354 B
PHP
23 lines
354 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;
|
|
|
|
/** @var Acars */
|
|
public $acars;
|
|
|
|
public function __construct(Pirep $pirep, Acars $acars)
|
|
{
|
|
$this->pirep = $pirep;
|
|
$this->acars = $acars;
|
|
}
|
|
}
|