misc_pterodactyl-panel/app/Providers/EventServiceProvider.php

22 lines
555 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Providers;
use Pterodactyl\Events\Server\Installed as ServerInstalledEvent;
use Pterodactyl\Notifications\ServerInstalled as ServerInstalledNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
ServerInstalledEvent::class => [
ServerInstalledNotification::class,
],
];
}