nooktheme/app/Contracts/Core/ReceivesEvents.php
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

14 lines
233 B
PHP

<?php
namespace Pterodactyl\Contracts\Core;
use Pterodactyl\Events\Event;
interface ReceivesEvents
{
/**
* Handles receiving an event from the application.
*/
public function handle(Event $notification): void;
}