readd the vacentral module

This commit is contained in:
Nabeel Shahzad
2017-12-05 21:40:10 -06:00
parent 281c72bcf6
commit 67ccc34655
14 changed files with 422 additions and 0 deletions

View File

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