Extend singleton test.
The build was successful. Détails

Cette révision appartient à :
Rafal Kupiec 2019-06-29 16:04:15 +02:00
Parent 171456beb4
révision 4afcbc0815
Signé par: belliash
ID de la clé GPG: 4E829243E0CFE6B4
2 fichiers modifiés avec 7 ajouts et 0 suppressions

Voir le fichier

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

Voir le fichier

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