Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Contracts/Core/ReceivesEvents.php
10264 views
1
<?php
2
3
namespace Pterodactyl\Contracts\Core;
4
5
use Pterodactyl\Events\Event;
6
7
interface ReceivesEvents
8
{
9
/**
10
* Handles receiving an event from the application.
11
*/
12
public function handle(Event $notification): void;
13
}
14
15