dto2data/tests/unit/Converter/fixtures/FillTest/HelloSchema.php
2021-11-06 15:23:18 +07:00

36 lines
680 B
PHP

<?php
namespace Rinsvent\DTO2Data\Tests\unit\Converter\fixtures\FillTest;
use Rinsvent\DTO2Data\Attribute\Schema;
#[\Attribute(\Attribute::TARGET_ALL|\Attribute::IS_REPEATABLE)]
class HelloSchema extends Schema
{
public ?array $baseMap = [
'surname',
'age',
'emails',
'authors' => [
'name',
],
'authors2' => [
'name',
],
'authors3',
'buy' => [
'phrase',
'length',
'isFirst',
],
'bar' => [
'barField'
],
'uuid',
'collection' => [
'value'
],
'createdAt'
];
}