dto2data/tests/unit/Converter/fixtures/FillTest/HelloSchema.php
Rinsvent 5d35178bdf Рефакторинг
починил тесты
2021-08-24 23:21:40 +07:00

27 lines
511 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',
],
'buy' => [
'phrase',
'length',
'isFirst',
],
'bar' => [
'barField'
]
];
}