We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54f56ea commit 3c4cfbdCopy full SHA for 3c4cfbd
src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/ConfigBuilderCacheWarmerTest.php
@@ -67,7 +67,12 @@ public function getCacheDir(): string
67
public function registerContainerConfiguration(LoaderInterface $loader): void
68
{
69
$loader->load(static function (ContainerBuilder $container) {
70
- $container->loadFromExtension('framework', ['http_method_override' => false]);
+ $container->loadFromExtension('framework', [
71
+ 'annotations' => false,
72
+ 'handle_all_throwables' => true,
73
+ 'http_method_override' => false,
74
+ 'php_errors' => ['log' => true],
75
+ ]);
76
});
77
}
78
};
0 commit comments