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 6c408dc commit dccb004Copy full SHA for dccb004
DependencyInjection/Configuration.php
@@ -505,7 +505,9 @@ private function addOrmSection(ArrayNodeDefinition $node): void
505
})
506
->end()
507
508
- ->booleanNode('enable_lazy_ghost_objects')->defaultValue(! method_exists(ProxyFactory::class, 'resetUninitializedProxy'))
+ ->booleanNode('enable_lazy_ghost_objects')
509
+ ->defaultValue(! method_exists(ProxyFactory::class, 'resetUninitializedProxy'))
510
+ ->info('Enables the new implementation of proxies based on lazy ghosts instead of using the legacy implementation')
511
512
->scalarNode('proxy_dir')->defaultValue('%kernel.cache_dir%/doctrine/orm/Proxies')->end()
513
->scalarNode('proxy_namespace')->defaultValue('Proxies')->end()
0 commit comments