Skip to content

Commit

Permalink
Merge pull request #1557 from gitname/patch-1
Browse files Browse the repository at this point in the history
Reduce ambiguity in Entities description
  • Loading branch information
guilhermeblanco committed Nov 16, 2015
2 parents 71bb27a + 8192d5b commit c561223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/en/tutorials/getting-started.rst
Expand Up @@ -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
Expand Down

0 comments on commit c561223

Please sign in to comment.