vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php line 28

  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. /**
  12.  * A read-only proxy for an event dispatcher.
  13.  *
  14.  * @author Bernhard Schussek <bschussek@gmail.com>
  15.  */
  16. class ImmutableEventDispatcher implements EventDispatcherInterface
  17. {
  18.     private EventDispatcherInterface $dispatcher;
  19.     public function __construct(EventDispatcherInterface $dispatcher)
  20.     {
  21.         $this->dispatcher $dispatcher;
  22.     }
  23.     public function dispatch(object $eventstring $eventName null): object
  24.     {
  25.         return $this->dispatcher->dispatch($event$eventName);
  26.     }
  27.     public function addListener(string $eventName, callable|array $listenerint $priority 0)
  28.     {
  29.         throw new \BadMethodCallException('Unmodifiable event dispatchers must not be modified.');
  30.     }
  31.     public function addSubscriber(EventSubscriberInterface $subscriber)
  32.     {
  33.         throw new \BadMethodCallException('Unmodifiable event dispatchers must not be modified.');
  34.     }
  35.     public function removeListener(string $eventName, callable|array $listener)
  36.     {
  37.         throw new \BadMethodCallException('Unmodifiable event dispatchers must not be modified.');
  38.     }
  39.     public function removeSubscriber(EventSubscriberInterface $subscriber)
  40.     {
  41.         throw new \BadMethodCallException('Unmodifiable event dispatchers must not be modified.');
  42.     }
  43.     public function getListeners(string $eventName null): array
  44.     {
  45.         return $this->dispatcher->getListeners($eventName);
  46.     }
  47.     public function getListenerPriority(string $eventName, callable|array $listener): ?int
  48.     {
  49.         return $this->dispatcher->getListenerPriority($eventName$listener);
  50.     }
  51.     public function hasListeners(string $eventName null): bool
  52.     {
  53.         return $this->dispatcher->hasListeners($eventName);
  54.     }
  55. }