mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 09:36:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			294 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			294 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Contracts\Core;
 | 
						|
 | 
						|
use Pterodactyl\Events\Event;
 | 
						|
 | 
						|
interface ReceivesEvents
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Handles receiving an event from the application.
 | 
						|
     *
 | 
						|
     * @param \Pterodactyl\Events\Event $notification
 | 
						|
     */
 | 
						|
    public function handle(Event $notification): void;
 | 
						|
}
 |