summaryrefslogtreecommitdiff
path: root/Zend/tests/bug21888.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug21888.phpt')
-rw-r--r--Zend/tests/bug21888.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/bug21888.phpt b/Zend/tests/bug21888.phpt
index b32bd35607..b79db58e14 100644
--- a/Zend/tests/bug21888.phpt
+++ b/Zend/tests/bug21888.phpt
@@ -8,19 +8,19 @@ class mom {
protected function prot() {
print "protected method\n";
- }
+ }
}
class child extends mom {
-
+
public function callMom() {
$this->prot();
}
-
+
public function viewMom() {
print $this->prot;
}
-
+
}
$c = new child();