pelican-panel-mirror/app/Contracts/Core/ReceivesEvents.php
2024-03-12 22:39:16 -04:00

14 lines
217 B
PHP

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