stas            Mon Apr 18 06:47:44 2005 EDT

  Modified files:              
    /phpdoc/en/language/oop5    abstract.xml 
  Log:
  I think 'public' was the intent there, judging from the language of the 
previous paragraph
  
  
http://cvs.php.net/diff.php/phpdoc/en/language/oop5/abstract.xml?r1=1.8&r2=1.9&ty=u
Index: phpdoc/en/language/oop5/abstract.xml
diff -u phpdoc/en/language/oop5/abstract.xml:1.8 
phpdoc/en/language/oop5/abstract.xml:1.9
--- phpdoc/en/language/oop5/abstract.xml:1.8    Sat Oct  2 05:40:49 2004
+++ phpdoc/en/language/oop5/abstract.xml        Mon Apr 18 06:47:43 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.8 $ -->
+<!-- $Revision: 1.9 $ -->
  <sect1 id="language.oop5.abstract">
   <title>Object Abstraction</title>
 
@@ -43,7 +43,7 @@
 
 class ConcreteClass2 extends AbstractClass
 {
-    protected function getValue() {
+    public function getValue() {
         return "ConcreteClass2";
     }
 

Reply via email to