summaryrefslogtreecommitdiff
path: root/Zend/tests/bug41961.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug41961.phpt')
-rw-r--r--Zend/tests/bug41961.phpt14
1 files changed, 7 insertions, 7 deletions
diff --git a/Zend/tests/bug41961.phpt b/Zend/tests/bug41961.phpt
index 514265b601..5df08d94d1 100644
--- a/Zend/tests/bug41961.phpt
+++ b/Zend/tests/bug41961.phpt
@@ -3,26 +3,26 @@ Bug #41961 (Ensure search for hidden private methods does not stray from class h
--FILE--
<?php
X::test();
-
+
/** Class X is related to neither ParentClass nor ChildClass. */
class X {
public static function test() {
- $myChild = new ChildClass;
+ $myChild = new ChildClass;
$myChild->secret(); // bug - invokes X::secret() instead of ChildClass::secret()
}
private function secret() {
echo "Called private " . __METHOD__ . "() on an instance of: " . get_class($this) . "\n";
- }
+ }
}
-
-class ParentClass {
+
+class ParentClass {
private function secret() { }
}
-
+
class ChildClass extends ParentClass {
public function secret() {
echo "Called public " . __METHOD__ . "() on an instance of: " . get_class($this) . "\n";
- }
+ }
}
?>
--EXPECT--