20250203-1

This commit is contained in:
2025-02-03 23:39:40 +03:00
parent dd62ad0ca4
commit 4bcb4c60dd
8 changed files with 185 additions and 9 deletions

View File

@@ -7,4 +7,11 @@ class A
public string $a;
public int $b;
public bool $c;
public function __construct (string $a = "", int $b = 0, bool $c = false)
{
$this->a = $a;
$this->b = $b;
$this->c = $c;
}
}