Temporarily fix test.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-05-28 13:40:34 +02:00
parent b319e11c09
commit 1175219ad4
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 2 additions and 2 deletions

View File

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