phpvms/modules/Installer/Providers/EventServiceProvider.php
2017-12-13 22:28:58 -06:00

24 lines
423 B
PHP

<?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();
}
}