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 | namespace Apie\Maker\Enums; |
| 3 | |
| 4 | enum PrimitiveType: string |
| 5 | { |
| 6 | case String = 'string'; |
| 7 | case Integer = 'int'; |
| 8 | case FloatingPoint = 'float'; |
| 9 | case Array = 'array'; |
| 10 | case Boolean = 'bool'; |
| 11 | case Null = 'null'; |
| 12 | case Mixed = 'mixed'; |
| 13 | } |