Properly look for method in all classes.
All checks were successful
The build was successful.

This commit is contained in:
2019-05-29 06:12:49 +02:00
parent 26333360b0
commit 675f3596a1
2 changed files with 21 additions and 5 deletions

View File

@@ -14,12 +14,12 @@ class Test2 extends Test1 {
public void __construct() {
print("Test2::__construct() called.\n");
$base->__construct();
$parent->__construct();
}
public void __destruct() {
print("Test2::__destruct() called.\n");
$base->__destruct();
$parent->__destruct();
}
}