Extend singleton test.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-06-29 16:04:15 +02:00
förälder 171456beb4
incheckning 4afcbc0815
Signerad av: belliash
GPG-nyckel ID: 4E829243E0CFE6B4
2 ändrade filer med 7 tillägg och 0 borttagningar

Visa fil

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

Visa fil

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