. */ declare(strict_types=1); namespace SP\Domain\Common\Attributes; use Attribute; /** * Class DtoTransformation */ #[Attribute(Attribute::TARGET_METHOD | Attribute::IS_REPEATABLE)] final readonly class DtoTransformation { public function __construct(public string $targetProperty) { } }