mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-15 13:25:30 +01:00
ff1ad31d6a
[PHP 7.2] Refactor DowngradeParameterTypeWideningRector to class method (#380)
84 lines
2.4 KiB
PHP
84 lines
2.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
namespace RectorPrefix20210705\Symfony\Component\EventDispatcher;
|
|
|
|
/**
|
|
* A read-only proxy for an event dispatcher.
|
|
*
|
|
* @author Bernhard Schussek <bschussek@gmail.com>
|
|
*/
|
|
class ImmutableEventDispatcher implements \RectorPrefix20210705\Symfony\Component\EventDispatcher\EventDispatcherInterface
|
|
{
|
|
private $dispatcher;
|
|
public function __construct(\RectorPrefix20210705\Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher)
|
|
{
|
|
$this->dispatcher = $dispatcher;
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
* @param object $event
|
|
* @return object
|
|
*/
|
|
public function dispatch($event, string $eventName = null)
|
|
{
|
|
return $this->dispatcher->dispatch($event, $eventName);
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function addListener(string $eventName, $listener, int $priority = 0)
|
|
{
|
|
throw new \BadMethodCallException('Unmodifiable event dispatchers must not be modified.');
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function addSubscriber(\RectorPrefix20210705\Symfony\Component\EventDispatcher\EventSubscriberInterface $subscriber)
|
|
{
|
|
throw new \BadMethodCallException('Unmodifiable event dispatchers must not be modified.');
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function removeListener(string $eventName, $listener)
|
|
{
|
|
throw new \BadMethodCallException('Unmodifiable event dispatchers must not be modified.');
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function removeSubscriber(\RectorPrefix20210705\Symfony\Component\EventDispatcher\EventSubscriberInterface $subscriber)
|
|
{
|
|
throw new \BadMethodCallException('Unmodifiable event dispatchers must not be modified.');
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getListeners(string $eventName = null)
|
|
{
|
|
return $this->dispatcher->getListeners($eventName);
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getListenerPriority(string $eventName, $listener)
|
|
{
|
|
return $this->dispatcher->getListenerPriority($eventName, $listener);
|
|
}
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function hasListeners(string $eventName = null)
|
|
{
|
|
return $this->dispatcher->hasListeners($eventName);
|
|
}
|
|
}
|