From 518bdc8a5fc52ad453a2e456af14d0f4c646bf7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nilg=C3=BCn=20Belma=20Bug=C3=BCner?= Date: Mon, 21 Sep 2009 05:17:59 +0000 Subject: [PATCH] fixed some members git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@288499 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/visibility.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/language/oop5/visibility.xml b/language/oop5/visibility.xml index b03d50486c..7b716e8c2c 100644 --- a/language/oop5/visibility.xml +++ b/language/oop5/visibility.xml @@ -5,9 +5,9 @@ The visibility of a property or method can be defined by prefixing the declaration with the keywords: public, protected or - private. Class members declared public can be accessed - everywhere. Members declared protected can be accessed only within - the class itself and by inherited and parent classes. Members + private. Class properties declared public can be accessed + everywhere. Properties declared protected can be accessed only within + the class itself and by inherited and parent classes. Properties declared as private may only be accessed by the class that defines the member.