22 lines
		
	
	
		
			555 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 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,
 | 
						|
        ],
 | 
						|
    ];
 | 
						|
}
 |