Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
AttributeValTesterDTO
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 AttributeValTesterDef
12 */
13readonly class AttributeValTesterDTO
14{
15    use DTOTrait;
16
17    public string $defId;
18    public string $concrete;
19    /**
20     * @var class-string|array<string>|null
21     */
22    public string|array|null $arg;
23}