vendor/shopware/core/Framework/Routing/RouteEventSubscriber.php line 62
<?php declare(strict_types=1);namespace Shopware\Core\Framework\Routing;use Shopware\Core\Framework\Log\Package;use Shopware\Storefront\Event\StorefrontRenderEvent;use Symfony\Component\EventDispatcher\EventSubscriberInterface;use Symfony\Component\HttpKernel\Event\RequestEvent;use Symfony\Component\HttpKernel\Event\ResponseEvent;use Symfony\Component\HttpKernel\KernelEvents;use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;/*** @internal*/#[Package('core')]class RouteEventSubscriber implements EventSubscriberInterface{/*** @internal*/public function __construct(private readonly EventDispatcherInterface $dispatcher){}public static function getSubscribedEvents(): array{$events = [KernelEvents::REQUEST => ['request', -10],KernelEvents::RESPONSE => ['response', -10],];if (class_exists(StorefrontRenderEvent::class)) {$events[StorefrontRenderEvent::class] = ['render', -10];}return $events;}public function request(RequestEvent $event): void{$request = $event->getRequest();if (!$request->attributes->has('_route')) {return;}$name = $request->attributes->get('_route') . '.request';$this->dispatcher->dispatch($event, $name);}public function render(StorefrontRenderEvent $event): void{$request = $event->getRequest();if (!$request->attributes->has('_route')) {return;}$name = $request->attributes->get('_route') . '.render';$this->dispatcher->dispatch($event, $name);}public function response(ResponseEvent $event): void{$request = $event->getRequest();if (!$request->attributes->has('_route')) {return;}$name = $request->attributes->get('_route') . '.response';$this->dispatcher->dispatch($event, $name);}}