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\Event; |
11 | |
12 | /** |
13 | * Class EventType |
14 | */ |
15 | enum EventType: string |
16 | { |
17 | use GetClassTrait; |
18 | |
19 | case Event = Event::class; |
20 | } |