Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | 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\types; |
9 | |
10 | use pvc\html\attributeArrayElement\AttributeMultiValue; |
11 | use pvc\html\attributeArrayElement\AttributeSingleValue; |
12 | use pvc\html\attributeArrayElement\AttributeVoid; |
13 | |
14 | /** |
15 | * Class AttributeType |
16 | */ |
17 | enum AttributeType: string |
18 | { |
19 | use GetClassTrait; |
20 | |
21 | case AttributeVoid = AttributeVoid::class; |
22 | case AttributeSingleValue = AttributeSingleValue::class; |
23 | case AttributeMultiValue = AttributeMultiValue::class; |
24 | |
25 | } |