fix #30250: final is just for methods

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@169349 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Nuno Lopes 2004-09-27 14:38:44 +00:00
parent e3d6824e23
commit dd1f66e96c

View file

@ -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>