/home/techb158/immovalet.com/vendor/symfony/event-dispatcher
NameSizeModeActions
Attribute/-0755rm
Debug/-0755rm
DependencyInjection/-0755rm
CHANGELOG.md27990644editdlrm
composer.json16230644editdlrm
EventDispatcher.php90910644editdlrm
EventDispatcherInterface.php23200644editdlrm
EventSubscriberInterface.php17350644editdlrm
GenericEvent.php36400644editdlrm
ImmutableEventDispatcher.php22290644editdlrm
LegacyEventDispatcherProxy.php8820644editdlrm
LICENSE10650644editdlrm
README.md5990644editdlrm
Edit: /home/techb158/immovalet.com/vendor/symfony/event-dispatcher/LegacyEventDispatcherProxy.php (882B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\EventDispatcher; use Symfony\Contracts\EventDispatcher\EventDispatcherInterface; trigger_deprecation('symfony/event-dispatcher', '5.1', '%s is deprecated, use the event dispatcher without the proxy.', LegacyEventDispatcherProxy::class); /** * A helper class to provide BC/FC with the legacy signature of EventDispatcherInterface::dispatch(). * * @author Nicolas Grekas * * @deprecated since Symfony 5.1 */ final class LegacyEventDispatcherProxy { public static function decorate(?EventDispatcherInterface $dispatcher): ?EventDispatcherInterface { return $dispatcher; } }