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