Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
AttributeDTO | 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 | */ |
6 | declare(strict_types=1); |
7 | |
8 | namespace pvc\html\htmlBuilder\definitions\dto; |
9 | |
10 | /** |
11 | * Class AttributeDef |
12 | */ |
13 | readonly class AttributeDTO |
14 | { |
15 | use DTOTrait; |
16 | |
17 | public string $defId; |
18 | public string $concrete; |
19 | public string $name; |
20 | public string $valTester; |
21 | public bool $caseSensitive; |
22 | public bool $global; |
23 | } |