2025-02-03 23:39:40 +03:00

17 lines
294 B
PHP

<?php
namespace goodboyalex\php_components_pack\tests\data;
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;
}
}