1
0
mirror of synced 2025-02-02 21:41:45 +03:00

Merge pull request #1557 from gitname/patch-1

Reduce ambiguity in Entities description
This commit is contained in:
Guilherme Blanco 2015-11-15 21:25:30 -05:00
commit c561223d1b

View File

@ -51,7 +51,7 @@ Entities are PHP Objects that can be identified over many requests
by a unique identifier or primary key. These classes don't need to extend any
abstract base class or interface. An entity class must not be final
or contain final methods. Additionally it must not implement
**clone** nor **wakeup** or :doc:`do so safely <../cookbook/implementing-wakeup-or-clone>`.
**clone** nor **wakeup**, unless it :doc:`does so safely <../cookbook/implementing-wakeup-or-clone>`.
An entity contains persistable properties. A persistable property
is an instance variable of the entity that is saved into and retrieved from the database