phpvms/app/Events/PirepCancelled.php
Nabeel S e99c22b007
Notifications fixes (#804)
* Emails not sending #795 #722

* Fix for news items not being sent; refactor some events; check for opt-in #722

* Formatting

* Remove extra parameter
2020-09-03 12:50:42 -04:00

17 lines
226 B
PHP

<?php
namespace App\Events;
use App\Contracts\Event;
use App\Models\Pirep;
class PirepCancelled extends Event
{
public $pirep;
public function __construct(Pirep $pirep)
{
$this->pirep = $pirep;
}
}