They do not return any value.
The build was successful. Details

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
1 changed files with 2 additions and 2 deletions

View File

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