From 254f2033a7177c0742d2423a46036e7357c37e8c Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Mon, 18 Apr 2005 10:47:43 +0000 Subject: [PATCH] I think 'public' was the intent there, judging from the language of the previous paragraph git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@184606 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/abstract.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/oop5/abstract.xml b/language/oop5/abstract.xml index 3122eff03e..b870e44859 100644 --- a/language/oop5/abstract.xml +++ b/language/oop5/abstract.xml @@ -1,5 +1,5 @@ - + Object Abstraction @@ -43,7 +43,7 @@ class ConcreteClass1 extends AbstractClass class ConcreteClass2 extends AbstractClass { - protected function getValue() { + public function getValue() { return "ConcreteClass2"; }