Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
ElementDTO
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3/**
4 * @author: Doug Wilbourne (dougwilbourne@gmail.com)
5 */
6declare(strict_types=1);
7
8namespace pvc\html\htmlBuilder\definitions\dto;
9
10/**
11 * Class ElementDef
12 */
13readonly class ElementDTO
14{
15    use DTOTrait;
16
17    public string $defId;
18    public string $concrete;
19    public string $name;
20
21    /**
22     * @var array<string>
23     */
24    public array $allowedAttributeDefIds;
25
26    /**
27     * @var array<string>
28     */
29    public array $allowedChildDefIds;
30}