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 */
6declare(strict_types=1);
7
8namespace pvc\html\htmlBuilder\definitions\types;
9
10use pvc\html\attributeArrayElement\AttributeMultiValue;
11use pvc\html\attributeArrayElement\AttributeSingleValue;
12use pvc\html\attributeArrayElement\AttributeVoid;
13
14/**
15 * Class AttributeType
16 */
17enum AttributeType: string
18{
19    use GetClassTrait;
20
21    case AttributeVoid = AttributeVoid::class;
22    case AttributeSingleValue = AttributeSingleValue::class;
23    case AttributeMultiValue = AttributeMultiValue::class;
24
25}