0dcf2aaed6
This simply updates dependencies and gets all of the providers and config files updated based on what the laravel/laravel currently ships with
15 lines
307 B
PHP
15 lines
307 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Providers;
|
|
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
|
|
|
class EventServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* The event listener mappings for the application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $listen = [];
|
|
}
|