mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-1072: Private property mapping can cause issues, suggest changing to protected #1341
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Mar 17, 2011).
Originally assigned to: @billschaller on GitHub.
Jira issue originally created by user kevbradwick:
The documentation recommends using private variables in entities. This can be problematic on entities with relations when using caching drivers as the proxy objects cannot access private variables and so the caching driver can throw notices like
...apc_store(): "_id" returned as member variable from __sleep() but
does not exist in ...
Making member variables protected resolves this issue when caching is enabled.
This information would be helpful on the documentation so others can be made aware of this issue. We spent a few days trying to debug the issue before understanding exactly what was going on.
@billschaller commented on GitHub (Jan 5, 2016):
Addressed in http://doctrine-orm.readthedocs.org/projects/doctrine-orm/en/latest/reference/architecture.html#entities