Extend singleton test.
The build was successful. 详情

这个提交包含在:
Rafal Kupiec 2019-06-29 16:04:15 +02:00
父节点 171456beb4
当前提交 4afcbc0815
签署人:: belliash
GPG 密钥 ID: 4E829243E0CFE6B4
共有 2 个文件被更改,包括 7 次插入0 次删除

查看文件

@ -2,6 +2,11 @@ final class Test {
private int $value;
private void __construct() {
print('Constructor called.' + "\n");
}
private void __destruct() {
print('Destructor called.' + "\n");
}
/* This is singleton */

查看文件

@ -1 +1,3 @@
Constructor called.
int(5)
Destructor called.