delete the old module

This commit is contained in:
Nabeel Shahzad
2017-12-05 21:19:05 -06:00
parent 6179cffc45
commit 84f47a09c8
6 changed files with 0 additions and 132 deletions

View File

@@ -1,25 +0,0 @@
<?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],
];
/**
* Register any events for your application.
*/
public function boot()
{
parent::boot();
}
}