Files
phpy/tests/lib/TestClass.php
2023-12-19 18:32:08 +08:00

16 lines
289 B
PHP

<?php
class TestClass
{
public array $array = [];
function __construct(string $a, int $b, float $c, array $d, array $e)
{
$this->array[] = $a;
$this->array[] = $b;
$this->array[] = $c;
$this->array[] = $d;
$this->array[] = $e;
}
}