<?php declare(strict_types=1); namespace 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); }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
EventDispatcherInterface.php | File | 431 B | 0644 |
|
ListenerProviderInterface.php | File | 524 B | 0644 |
|
StoppableEventInterface.php | File | 785 B | 0644 |
|