X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/vendor/symfony/event-dispatcher
home
/
gfecatvj
/
sites
/
realesbar
/
vendor
/
symfony
/
event-dispatcher
/
📁
..
📄
CHANGELOG.md
(2.66 KB)
📁
Debug
📁
DependencyInjection
📄
EventDispatcher.php
(8.94 KB)
📄
EventDispatcherInterface.php
(2.41 KB)
📄
EventSubscriberInterface.php
(1.68 KB)
📄
GenericEvent.php
(3.5 KB)
📄
ImmutableEventDispatcher.php
(2.18 KB)
📄
LICENSE
(1.04 KB)
📄
LegacyEventDispatcherProxy.php
(882 B)
📄
README.md
(604 B)
📄
composer.json
(1.54 KB)
Editing: LegacyEventDispatcherProxy.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 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 <p@tchwork.com> * * @deprecated since Symfony 5.1 */ final class LegacyEventDispatcherProxy { public static function decorate(?EventDispatcherInterface $dispatcher): ?EventDispatcherInterface { return $dispatcher; } }
Upload File
Create Folder