Files
server/shared/lib/Event/EventDispatcherInterface.php
2026-07-27 00:48:11 -04:00

11 lines
145 B
PHP

<?php
declare(strict_types=1);
namespace KTXF\Event;
interface EventDispatcherInterface
{
public function dispatch(Event $event): void;
}