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" ]]>