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