17 lines
333 B
PHP
17 lines
333 B
PHP
<?php
|
|
|
|
namespace Rinsvent\Data2DTO\Tests\unit\Converter\fixtures\FillTest;
|
|
|
|
use Rinsvent\Data2DTO\Attribute\PropertyPath;
|
|
use Rinsvent\Data2DTO\Transformer\Trim;
|
|
|
|
class HelloRequest
|
|
{
|
|
#[Trim]
|
|
public string $surname;
|
|
#[PropertyPath('fake_age')]
|
|
public int $age;
|
|
public array $emails;
|
|
public BuyRequest $buy;
|
|
}
|