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.
2 parents 5dbe6d0 + 83597b5 commit 536ca30Copy full SHA for 536ca30
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