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
27 lines
470 B
PHP
27 lines
470 B
PHP
<?php
|
|
|
|
namespace App\Listeners;
|
|
|
|
use App\Contracts\Listener;
|
|
use App\Events\PirepPrefiled;
|
|
|
|
/**
|
|
* Handler for PIREP events
|
|
*/
|
|
class PirepEventsHandler extends Listener
|
|
{
|
|
/** The events and the callback */
|
|
public static $callbacks = [
|
|
PirepPrefiled::class => 'onPirepPrefile',
|
|
];
|
|
|
|
/**
|
|
* Called when a PIREP is prefiled
|
|
*
|
|
* @param PirepPrefiled $event
|
|
*/
|
|
public function onPirepPrefile(PirepPrefiled $event)
|
|
{
|
|
}
|
|
}
|