bbec276da8
* #355 Calculate distance button in add/edit Flight page * Styling * Move add/edit flight logic out of controller and into service layer * Styling * Formatting * Run styleci against modules dir * Styleci config * Style fixes in /modules
18 lines
452 B
PHP
18 lines
452 B
PHP
<?php
|
|
|
|
namespace Modules\Vacentral\Providers;
|
|
|
|
use App\Events\PirepAccepted;
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
|
use Modules\Vacentral\Listeners\PirepAcceptedEventListener;
|
|
|
|
class EventServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* The event listener mappings for the application.
|
|
*/
|
|
protected $listen = [
|
|
PirepAccepted::class => [PirepAcceptedEventListener::class],
|
|
];
|
|
}
|