data-transfer-object/tests/Classes/FromInputObject.php
2026-02-18 19:19:07 -03:00

19 lines
316 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Classes;
use Icefox\DTO\Attributes\FromInput;
use Icefox\DTO\DataObject;
readonly class FromInputObject
{
use DataObject;
public function __construct(
#[FromInput('other_name')]
public string $text,
public int $standard,
) {}
}