| Nuno Lopes 2004-09-28, 3:58 am |
| nlopess Mon Sep 27 10:38:44 2004 EDT
Modified files:
/phpdoc/en/language/oop5 final.xml
Log:
fix #30250: final is just for methods
http://cvs.php.net/diff.php/phpdoc/...1.3&r2=1.4&ty=u
Index: phpdoc/en/language/oop5/final.xml
diff -u phpdoc/en/language/oop5/final.xml:1.3 phpdoc/en/language/oop5/final.xml:1.4
--- phpdoc/en/language/oop5/final.xml:1.3 Fri Jul 23 14:59:56 2004
+++ phpdoc/en/language/oop5/final.xml Mon Sep 27 10:38:44 2004
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<sect1 id="language.oop5.final">
<title>Final Keyword</title>
<para>
PHP 5 introduces the final keyword, which prevents child classes from
- overriding a method or variable by prefixing the definition with final.
+ overriding a method by prefixing the definition with final.
</para>
<example>
|