add vacentral plugin scaffolding

This commit is contained in:
Nabeel Shahzad
2017-12-05 20:30:13 -06:00
parent 99ac299936
commit e888b90024
10 changed files with 208 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
<?php
namespace Modules\Vacentral\Providers;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use App\Events\PirepAccepted;
use Modules\Vacentral\Listeners\PirepAcceptedEventListener;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*/
protected $listen = [
PirepAccepted::class => [PirepAcceptedEventListener::class],
];
/**
* Register any events for your application.
*/
public function boot()
{
parent::boot();
}
}