From 9cb539b0b984d56f744dcbe8c4446ef42b767db2 Mon Sep 17 00:00:00 2001 From: Jelle van Oosterbosch Date: Tue, 3 Mar 2026 00:12:19 +0100 Subject: [PATCH] Changed the ApiExceptionSubscriber to be less aggressive --- src/EventSubscriber/ApiExceptionSubscriber.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EventSubscriber/ApiExceptionSubscriber.php b/src/EventSubscriber/ApiExceptionSubscriber.php index a50db30..b5da8f2 100644 --- a/src/EventSubscriber/ApiExceptionSubscriber.php +++ b/src/EventSubscriber/ApiExceptionSubscriber.php @@ -35,7 +35,7 @@ public function __construct( public static function getSubscribedEvents(): array { return [ - KernelEvents::EXCEPTION => ['onKernelException', 256], + KernelEvents::EXCEPTION => ['onKernelException', -10], ]; }