Skip to content

Commit 83597b5

Browse files
Fix merge
1 parent 20f904d commit 83597b5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Tests/CacheWarmer/ConfigBuilderCacheWarmerTest.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,12 @@ public function getCacheDir(): string
6767
public function registerContainerConfiguration(LoaderInterface $loader): void
6868
{
6969
$loader->load(static function (ContainerBuilder $container) {
70-
$container->loadFromExtension('framework', ['http_method_override' => false]);
70+
$container->loadFromExtension('framework', [
71+
'annotations' => false,
72+
'handle_all_throwables' => true,
73+
'http_method_override' => false,
74+
'php_errors' => ['log' => true],
75+
]);
7176
});
7277
}
7378
};

0 commit comments

Comments
 (0)