mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 17:02:15 +01:00
16 lines
289 B
PHP
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;
|
|
}
|
|
}
|