misc_pterodactyl-panel/app/Contracts/Core/ReceivesEvents.php
2018-07-01 14:34:40 -07:00

15 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;
}