From 6cbdb0cc3ddbb63499262cd3036882b08ee2690b Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 26 Jul 2024 15:24:20 +0200 Subject: [PATCH] Fix merge (bis) --- Tests/DependencyInjection/ConfigurationTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Tests/DependencyInjection/ConfigurationTest.php b/Tests/DependencyInjection/ConfigurationTest.php index 1d48dce8f..171cfedc4 100644 --- a/Tests/DependencyInjection/ConfigurationTest.php +++ b/Tests/DependencyInjection/ConfigurationTest.php @@ -573,6 +573,8 @@ public function testSerializerJsonDetailedErrorMessagesEnabledWhenDefaultContext $config = $processor->processConfiguration(new Configuration(true), [ [ 'http_method_override' => false, + 'handle_all_throwables' => true, + 'php_errors' => ['log' => true], 'serializer' => [ 'default_context' => [ 'foo' => 'bar', @@ -590,6 +592,8 @@ public function testSerializerJsonDetailedErrorMessagesInDefaultContextCanBeDisa $config = $processor->processConfiguration(new Configuration(true), [ [ 'http_method_override' => false, + 'handle_all_throwables' => true, + 'php_errors' => ['log' => true], 'serializer' => [ 'default_context' => [ 'foo' => 'bar', @@ -608,6 +612,8 @@ public function testSerializerJsonDetailedErrorMessagesInDefaultContextCanBeDisa $config = $processor->processConfiguration(new Configuration(true), [ [ 'http_method_override' => false, + 'handle_all_throwables' => true, + 'php_errors' => ['log' => true], 'serializer' => [ 'default_context' => [ 'foo' => 'bar',