misc_pterodactyl-panel/app/Providers/EventServiceProvider.php
2018-07-01 14:34:40 -07:00

21 lines
555 B
PHP

<?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,
],
];
}