Проинтегрировал виртуальное поле

Чтобы можно было заполнить дто, когда нет такого ключа в данных.
This commit is contained in:
Rinsvent 2021-08-15 22:49:58 +07:00
parent e479206af0
commit c49bac2315

View File

@ -2,11 +2,11 @@
namespace Rinsvent\Data2DTO\Attribute;
/** @property string[] $tags */
#[\Attribute]
class VirtualProperty
{
public function __construct(
/** @var string[] $tags */
public array $tags = ['default']
) {}
}