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