LegacyEventDispatcherProxy.php 742 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\EventDispatcher;
  11. use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
  12. /**
  13. * A helper class to provide BC/FC with the legacy signature of EventDispatcherInterface::dispatch().
  14. *
  15. * This class should be deprecated in Symfony 5.1
  16. *
  17. * @author Nicolas Grekas <p@tchwork.com>
  18. */
  19. final class LegacyEventDispatcherProxy
  20. {
  21. public static function decorate(?EventDispatcherInterface $dispatcher): ?EventDispatcherInterface
  22. {
  23. return $dispatcher;
  24. }
  25. }