2015-12-06 18:58:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Providers;
|
|
|
|
|
2016-09-03 21:09:00 +00:00
|
|
|
use Illuminate\Support\Facades\Event;
|
2015-12-06 18:58:49 +00:00
|
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
|
|
|
|
|
|
|
class EventServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The event listener mappings for the application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-01-25 00:15:03 +00:00
|
|
|
protected $listen = [];
|
2015-12-06 18:58:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register any other events for your application.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-09-03 21:09:00 +00:00
|
|
|
public function boot()
|
2015-12-06 18:58:49 +00:00
|
|
|
{
|
2016-09-03 21:09:00 +00:00
|
|
|
parent::boot();
|
2015-12-06 18:58:49 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|