Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/en/orm/entities.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ $article->hasValue('links'); // false
### Declaring Concrete Properties

In CakePHP 6.0 entity fields can be mapped onto real class properties instead
of being stored only as dynamic fields. This lets you use native PHP types in
your entities while continuing to use CakePHP's entity features such as
of being stored only as dynamic fields. This gives you type safety for
your entity fields while continuing to use CakePHP's entity features such as
`get()`, `set()`, `patch()`, dirty tracking, original values, and mass
assignment.

Expand Down
Loading