mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 22:14:45 +02:00
14 lines
217 B
PHP
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;
|
|
}
|