I’m currently using symfony 7.3 with php 8.4.
And I’m trying to fix the following deprecation message:
Since symfony/var-exporter 7.3: The “SymfonyComponentVarExporterLazyGhostTrait” trait is deprecated, use native lazy objects instead.
I’m not using LazyGhostTrait in my code, the only reference to the keyword lazy is on the doctrine.yaml file
enable_lazy_ghost_objects: true
But unfortunately when I try to set it to false I’m having the following feedback
Lazy ghost objects cannot be disabled for ORM 3.
So, I guess I cannot do anything about my initial deprecation message, unless I missed something?
Any hints ?