Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Blocker
-
Resolution: Invalid
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Security Level: All
-
Labels:None
Description
Lazy-loading users is impossible atm if you want to serialize them at some point, and they are using private member variables.
My suggestion is to check whether the proxied class implements the Serializable interface, and in these cases instead of implementing a __sleep method, a serialize/unserialize method should be implemented instead.
Something like:
public function serialize()
{ return serialize(array($this->__isInitialized__, parent::serialize())); }public function unserialize($str)
{ list($this->__initialized__, $parentStr) = unserialize($str); parent::unserialize($parentStr); }At the moment, this makes Doctrine Proxy objects incompatible with the Symfony Security component, and if possible it should be fixed for the 2.1 release. If you need help on this, let me know.
Closing this, not sure what I was debugging there, the problem is a Symfony one