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