This repository has been archived on 2025-05-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Astral-nook/app/Providers/EventServiceProvider.php
2017-03-19 19:36:50 -04:00

26 lines
507 B
PHP

<?php
namespace Pterodactyl\Providers;
use Illuminate\Support\Facades\Event;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [];
/**
* Register any other events for your application.
*
* @return void
*/
public function boot()
{
parent::boot();
}
}