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 7da1e24 commit a9d0352Copy full SHA for a9d0352
tests/App/AppKernel.php
@@ -65,6 +65,11 @@ protected function configureRoutes(RoutingConfigurator $routes): void
65
protected function configureContainer(ContainerBuilder $containerBuilder, LoaderInterface $loader): void
66
{
67
$loader->load(__DIR__.'/config.yml');
68
+
69
+ // TODO: move to config.yml once we drop support for Symfony < 7.3
70
+ if (Kernel::VERSION_ID >= 70300) {
71
+ $containerBuilder->loadFromExtension('framework', ['property_info' => ['with_constructor_extractor' => true]]);
72
+ }
73
}
74
75
private function getBaseDir(): string
0 commit comments