From ee264e8ee1b9e84dbd63a69572eb6842cf9921ae Mon Sep 17 00:00:00 2001 From: Richard Quadling Date: Fri, 6 Mar 2009 15:24:23 +0000 Subject: [PATCH] w/s git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@276811 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/cloning.xml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/language/oop5/cloning.xml b/language/oop5/cloning.xml index 3a57376c6b..d5e8a3bdc3 100644 --- a/language/oop5/cloning.xml +++ b/language/oop5/cloning.xml @@ -1,5 +1,5 @@ - + Object cloning @@ -35,9 +35,10 @@ $copy_of_object = clone $object; will remain references. - Once the cloning is complete, if a __clone() method is defined, then - the newly created object's __clone() method will be called, to allow any - necessary properties that need to be changed. + + Once the cloning is complete, if a __clone() method is defined, then + the newly created object's __clone() method will be called, to allow any + necessary properties that need to be changed.