Extend singleton test.
The build was successful. Ayrıntılar

Bu işleme şunda yer alıyor:
Rafal Kupiec 2019-06-29 16:04:15 +02:00
ebeveyn 171456beb4
işleme 4afcbc0815
İmzalayan: belliash
GPG Anahtar Kimliği: 4E829243E0CFE6B4
2 değiştirilmiş dosya ile 7 ekleme ve 0 silme

Dosyayı Görüntüle

@ -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 */

Dosyayı Görüntüle

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