16 lines
331 B
PHP
16 lines
331 B
PHP
<?php
|
|
|
|
namespace Rinsvent\Data2DTO\Transformer;
|
|
|
|
#[\Attribute(\Attribute::IS_REPEATABLE|\Attribute::TARGET_ALL)]
|
|
abstract class Meta
|
|
{
|
|
public const TYPE = 'simple';
|
|
public ?string $returnType = null;
|
|
public ?bool $allowsNull = null;
|
|
|
|
public function __construct(
|
|
public array $tags = ['default']
|
|
) {}
|
|
}
|