/var/www/cobraambalaj/vendor/symfony/event-dispatcher
NameSizeModeActions
Debug/-0755rm
DependencyInjection/-0755rm
CHANGELOG.md27250644editdlrm
composer.json16190644editdlrm
EventDispatcher.php90910644editdlrm
EventDispatcherInterface.php24650644editdlrm
EventSubscriberInterface.php17200644editdlrm
GenericEvent.php35860644editdlrm
ImmutableEventDispatcher.php22290644editdlrm
LegacyEventDispatcherProxy.php8820644editdlrm
LICENSE10650644editdlrm
README.md6040644editdlrm
Edit: /var/www/cobraambalaj/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; } }