From fb546a9f7f833930df5981e455e1f3b61d0cca14 Mon Sep 17 00:00:00 2001 From: ADmad Date: Mon, 21 Sep 2026 21:08:25 +0530 Subject: [PATCH] Improve wording regarding type safety for entity fields --- docs/en/orm/entities.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/orm/entities.md b/docs/en/orm/entities.md index dccf476e39..36d7ca4db8 100644 --- a/docs/en/orm/entities.md +++ b/docs/en/orm/entities.md @@ -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.