From 666b6aa9a52919663c866c05b40c8ac076b435e1 Mon Sep 17 00:00:00 2001 From: Peter Cowburn Date: Mon, 13 Aug 2012 19:56:09 +0000 Subject: [PATCH] link to variable property names description from oop5 properties git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@327106 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/properties.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/language/oop5/properties.xml b/language/oop5/properties.xml index 0c565cfe5d..7e8a37bd0a 100644 --- a/language/oop5/properties.xml +++ b/language/oop5/properties.xml @@ -43,7 +43,8 @@ Within class methods the properties, constants, and methods may be accessed by using the form $this->property - (where property is the name of the property) + (where property is the name of the property; see + also variable property names) unless the access is to a static property within the context of a static class method, in which case it is accessed using the form self::$property. See Static