You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
doctrine/orm creates proxy class implementations of various interfaces depending on whether the lazy ghost setting is enabled or not. ProxyFactory line 116
I guess it will breaks something in case lazy ghost is disabled. In think it needs the same check like in the ProxyFactory class and give depending interface name to parent.
Anyway - there is a lot around in doctrine universe. I don't know if there more effects.
doctrine/orm creates proxy class implementations of various interfaces depending on whether the lazy ghost setting is enabled or not.
ProxyFactory line 116
doctrine/persistence checks a proxy class by its interface.
AbstractManagerRegistry line 176
doctrine/DoctrineBundle doesn't care and intializes doctrine/persistence with the old Proxy interface.
Registry line 30
Doctrine\Persistence\AbstractManagerRegistry->getManagerForClass($proxyClassName) returns null when lazy ghost is enabled.
The text was updated successfully, but these errors were encountered: