19 lines
322 B
PHP
19 lines
322 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Classes;
|
|
|
|
use Icefox\DTO\DataObject;
|
|
|
|
readonly class OptionalData
|
|
{
|
|
use DataObject;
|
|
|
|
public function __construct(
|
|
public string $string = 'xyz',
|
|
public float $float = 0.777,
|
|
public int $int = 3,
|
|
public bool $bool = false,
|
|
) {}
|
|
}
|