123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace Symfony\Contracts\EventDispatcher;
- use Psr\EventDispatcher\EventDispatcherInterface as PsrEventDispatcherInterface;
- interface EventDispatcherInterface extends PsrEventDispatcherInterface
- {
-
- public function dispatch(object $event, ?string $eventName = null): object;
- }
|