They do not return any value.
All checks were successful
The build was successful.

This commit is contained in:
Rafal Kupiec 2019-04-17 12:25:57 +02:00
parent 58618a4d27
commit 2aa25f66d5
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -1,9 +1,9 @@
class Test { class Test {
object __construct(string $a) { void __construct(string $a) {
print("$a\n"); print("$a\n");
} }
object __construct(int $a, int $b) { void __construct(int $a, int $b) {
print("$a + $b = ", $a + $b, "\n"); print("$a + $b = ", $a + $b, "\n");
} }