Files
Roman Pyrih acb036dbd9 first commit
2026-05-21 15:33:11 +02:00

22 lines
463 B
PHP

<?php
declare (strict_types=1);
namespace WordPress\AiClientDependencies\Psr\EventDispatcher;
/**
* Defines a dispatcher for events.
*/
interface EventDispatcherInterface
{
/**
* Provide all relevant listeners with an event to process.
*
* @param object $event
* The object to process.
*
* @return object
* The Event that was passed, now modified by listeners.
*/
public function dispatch(object $event);
}