From 9f8d225aa1644e976586264e2e06fc3f265e58cb Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 16 May 2020 15:57:47 +0200 Subject: [PATCH] Revert "Change priority of KernelEvents::RESPONSE subscriber" This reverts commit 6ed624ad16d21a5daf8f0e132cbef53ff1e0de59. --- .../Component/HttpKernel/EventListener/ProfilerListener.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php b/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php index fec89c3ed398..b8464f162735 100644 --- a/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php +++ b/src/Symfony/Component/HttpKernel/EventListener/ProfilerListener.php @@ -119,7 +119,7 @@ public function onKernelTerminate(PostResponseEvent $event) public static function getSubscribedEvents() { return [ - KernelEvents::RESPONSE => ['onKernelResponse', -1012], + KernelEvents::RESPONSE => ['onKernelResponse', -100], KernelEvents::EXCEPTION => ['onKernelException', 0], KernelEvents::TERMINATE => ['onKernelTerminate', -1024], ];