Temporarily fix test.
已通過所有檢查
The build was successful.

此提交包含在:
2019-05-28 13:40:34 +02:00
父節點 b319e11c09
當前提交 1175219ad4

查看文件

@@ -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();
} }
} }