phpvms/modules/Vacentral/Providers/EventServiceProvider.php
2018-08-26 13:50:08 -05:00

18 lines
452 B
PHP

<?php
namespace Modules\Vacentral\Providers;
use App\Events\PirepAccepted;
use Modules\Vacentral\Listeners\PirepAcceptedEventListener;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*/
protected $listen = [
PirepAccepted::class => [PirepAcceptedEventListener::class],
];
}