summaryrefslogtreecommitdiff
path: root/Zend/tests/bug29674.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug29674.phpt')
-rw-r--r--Zend/tests/bug29674.phpt14
1 files changed, 7 insertions, 7 deletions
diff --git a/Zend/tests/bug29674.phpt b/Zend/tests/bug29674.phpt
index f1706cabb7..b9cb4230fe 100644
--- a/Zend/tests/bug29674.phpt
+++ b/Zend/tests/bug29674.phpt
@@ -5,18 +5,18 @@ Bug #29674 (inherited method doesn't have access to private variables of the der
class BaseClass
{
- private $private_base = "Base";
+ private $private_base = "Base";
- function printVars ()
- {
- var_dump($this->private_base);
- var_dump($this->private_child);
- }
+ function printVars ()
+ {
+ var_dump($this->private_base);
+ var_dump($this->private_child);
+ }
}
class ChildClass extends BaseClass
{
- private $private_child = "Child";
+ private $private_child = "Child";
}
echo "===BASE===\n";