Scaffolding for Installer module

This commit is contained in:
Nabeel Shahzad
2017-12-13 22:28:58 -06:00
parent a3ec21c73d
commit 3e3f18fd0c
13 changed files with 369 additions and 0 deletions

View File

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