From 3ccf56c96878a0e6ce7a41a0cd76f4db7a332296 Mon Sep 17 00:00:00 2001 From: lacatoire Date: Sun, 7 Jun 2026 18:31:28 +0200 Subject: [PATCH] [Sync EN] appendix 8.4 property hooks: improve terminology --- appendices/migration84/new-features.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appendices/migration84/new-features.xml b/appendices/migration84/new-features.xml index c72893df5..b55d9a373 100644 --- a/appendices/migration84/new-features.xml +++ b/appendices/migration84/new-features.xml @@ -1,5 +1,5 @@ - + Nuevas características @@ -53,6 +53,8 @@ $p->firstName = 'peter'; print $p->firstName; // Imprime "Peter" $p->lastName = 'Peterson'; print $p->fullName; // Imprime "Peter Peterson" + +$p->fullName = "Peter 'Pete' Peterson"; // Lanza Error: "Property Person::$fullName is read-only" ]]>