9b2e466b7e
* Discord notifications for events #433 * Style fixes * Check for blank webhook urls and disable * Cleanup items after review * Changes and fixes * Style fixes * Don't load env for testing * Fix status text * Refactor saving fields/fares so events get the latest data * Cleanup * Style fixes
20 lines
279 B
PHP
20 lines
279 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Contracts\Event;
|
|
use App\Models\Pirep;
|
|
|
|
/**
|
|
* Status change like Boarding, Taxi, etc
|
|
*/
|
|
class PirepStatusChange extends Event
|
|
{
|
|
public $pirep;
|
|
|
|
public function __construct(Pirep $pirep)
|
|
{
|
|
$this->pirep = $pirep;
|
|
}
|
|
}
|