1234567891011121314151617181920212223242526272829 |
- <?php
- namespace Symfony\Component\EventDispatcher;
- use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
- final class LegacyEventDispatcherProxy
- {
- public static function decorate(?EventDispatcherInterface $dispatcher): ?EventDispatcherInterface
- {
- return $dispatcher;
- }
- }
|