cvs: peardoc /en/chapters standards.xml
[email protected] ("Christian Weiske")
| Newsgroups | php.pear.doc |
|---|---|
| Message-ID | <cvscweiske1241467608@cvsserver> |
cweiske Mon May 4 20:06:48 2009 UTC
Modified files:
/peardoc/en/chapters standards.xml
Log:
Fix bug #16173: PHP _does_ support private members
http://cvs.php.net/viewvc.cgi/peardoc/en/chapters/standards.xml?r1=1.69&r2=1.70&diff_format=u
Index: peardoc/en/chapters/standards.xml
diff -u peardoc/en/chapters/standards.xml:1.69 peardoc/en/chapters/standards.xml:1.70
--- peardoc/en/chapters/standards.xml:1.69 Mon May 4 20:02:17 2009
+++ peardoc/en/chapters/standards.xml Mon May 4 20:06:47 2009
@@ -786,10 +786,7 @@
</informaltable>
</para>
<para>
- Private class members (meaning class members that are intended
- to be used only from within the same class in which they are
- declared; PHP does not yet support truly-enforceable private
- namespaces) are preceded by a single underscore. For example:
+ Private class members are preceded by a single underscore. For example:
<informaltable>
<tgroup cols="3">
<tbody>
@@ -806,9 +803,7 @@
<note>
<simpara>The following applies to PHP5.</simpara>
</note>
- Protected class members (meaning class members that are intended
- to be used only from within the same class in which they are
- declared or from subclasses that extend it) are not preceded by a single
+ Protected class members are not preceded by a single
underscore. For example:
<informaltable>
<tgroup cols="2">